Add Simple Image Processor

This commit is contained in:
Grant Terris
2019-08-10 18:21:38 -07:00
parent 99b5733710
commit 7155fce24f
7 changed files with 59 additions and 9 deletions

15
ImageProcessor.hpp Normal file
View File

@@ -0,0 +1,15 @@
#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