Files
fault-finder/ImageAnalyzer.hpp
2019-10-19 16:58:24 -07:00

22 lines
327 B
C++

#ifndef IMAGEANALYZER_H
#define IMAGEANALYZER_H
#include <opencv2/core.hpp>
#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