#ifndef IMAGEANALYZER_H #define IMAGEANALYZER_H #include #include "FaultManager.hpp" #define THROTTLE_AMOUNT 1 class ImageAnalyzer { public: bool ProcessImage(uint32_t width, uint32_t height, uint8_t *imgPointer, FaultManager fault_mgr, bool test); private: int throttle_count = 1; }; #endif