OpenCV 4.5.3(日本語機械翻訳)
qualitybase.hpp
1 // This file is part of OpenCV project.
2 // It is subject to the license terms in the LICENSE file found in the top-level directory
3 // of this distribution and at http://opencv.org/license.html.
4
5 #ifndef OPENCV_QUALITYBASE_HPP
6 #define OPENCV_QUALITYBASE_HPP
7
8 #include <opencv2/core.hpp>
9
14 namespace cv
15{
16 namespace quality
17{
18
21
22 /************************************ Quality Base Class ************************************/
23 class CV_EXPORTS_W QualityBase
24 : public virtual Algorithm
25{
26 public:
27
29 virtual ~QualityBase() = default;
30
35 virtual CV_WRAP cv::Scalar compute( InputArray img ) = 0;
36
38 virtual CV_WRAP void getQualityMap(OutputArray dst) const
39 {
40 if (!dst.needed() || _qualityMap.empty() )
41 return;
42 dst.assign(_qualityMap);
43 }
44
46 CV_WRAP void clear() CV_OVERRIDE { _qualityMap = _mat_type(); Algorithm::clear(); }
47
49 CV_WRAP bool empty() const CV_OVERRIDE { return _qualityMap.empty(); }
50
51 protected:
52
55
58
59}; // QualityBase
61 } // quality
62} // cv
63 #endif
This type is very similar to InputArray except that it is used for input/output and output function p...
Definition: mat.hpp:295
This is a base class for all more or less complex algorithms in OpenCV
Definition: core.hpp:3091
virtual CV_WRAP void clear()
Clears the algorithm state
Definition: core.hpp:3098
Definition: mat.hpp:2402
Definition: qualitybase.hpp:25
_mat_type _qualityMap
Output quality maps if generated by algorithm
Definition: qualitybase.hpp:57
virtual ~QualityBase()=default
Destructor
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75