Files
fault-finder/ImageAnalyzer.hpp
2019-09-02 18:01:06 -07:00

16 lines
254 B
C++

#ifndef IMAGEANALYZER_H
#define IMAGEANALYZER_H
#include <opencv2/core.hpp>
#include "FaultManager.hpp"
class ImageAnalyzer
{
public:
bool ProcessImage(uint32_t width, uint32_t height, uint8_t *imgPointer, FaultManager fault_mgr);
};
#endif