15 lines
205 B
C++
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 |