16 lines
254 B
C++
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 |