Object Detection  5.0
Image Processing Using Qt and Opencv
abstractimageprocessorimpl.h
1 #ifndef _ABSTRACTIMAGEPROCESSORIMPL_H
2 #define _ABSTRACTIMAGEPROCESSORIMPL_H
3 #include "ImageProcessor/abstractimageprocessor.h"
4 #include <headers.h>
5 #include <memory>
6 
7 class ImageProcessor::AbstractImageProcessor::_AbstractImageProcessorImpl{
8  cv::Mat _img;
9  cv::Mat _dst;
10 public:
11  cv::Mat getImg() const;
12  cv::Mat getDst() const;
13 protected:
14 
15 public:
16  void setImg(const cv::Mat &img);
17  void setDst(const cv::Mat &dst);
18 
19 };
20 
21 
22 #endif // ABSTRACTIMAGEPROCESSOR_H
cv::Mat getImg() const
AbstractImageProcessor::getImg.
virtual void setDst(const cv::Mat &dst)
sets The output of the operation
cv::Mat getDst() const
returns A cv::Mat Object which represents the output of the image processing operation ...