CCIMXDesktop
 
Loading...
Searching...
No Matches
image_proc_base.h
1#ifndef IMAGE_PROC_BASE_H
2#define IMAGE_PROC_BASE_H
3class CVImage;
8struct ImageProc {
13 ImageProc() = default;
14 virtual ~ImageProc() = default;
21 virtual bool process(CVImage& prev_image) = 0;
22};
23
24#endif // IMAGE_PROC_BASE_H
The CVImage class is the image class that provides the image in the frameworks.
Definition CVImage.h:9
base of all processors
Definition image_proc_base.h:8
ImageProc()=default
Construct a new Image Proc object.
virtual bool process(CVImage &prev_image)=0
process images