CCIMXDesktop
 
Loading...
Searching...
No Matches
GrayProcessor.h
1#ifndef GRAYPROCESSOR_H
2#define GRAYPROCESSOR_H
3#include "image_proc_base.h"
8class GrayProcessor : public ImageProc {
9public:
15 virtual ~GrayProcessor() override = default;
22 bool process(CVImage& prev_image) override;
23};
24
25#endif // GRAYPROCESSOR_H
The CVImage class is the image class that provides the image in the frameworks.
Definition CVImage.h:9
make image gray
Definition GrayProcessor.h:8
GrayProcessor()
Construct a new Gray Processor object.
Definition GrayProcessor.cpp:5
bool process(CVImage &prev_image) override
process the gray session
Definition GrayProcessor.cpp:9
base of all processors
Definition image_proc_base.h:8