Files
fault-finder/ImageProcessor.hpp
2019-08-10 18:31:06 -07:00

15 lines
205 B
C++

#ifndef IMAGEPROCESSOR_H
#define IMAGEPROCESSOR_H
#include <opencv2/core.hpp>
class ImageProcessor
{
public:
void ProcessImage(uint32_t width, uint32_t height, uint8_t *imgPointer);
};
#endif