OpenCV 4.5.3(日本語機械翻訳)
qualitygmsd.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_QUALITY_QUALITYGMSD_HPP
6 #define OPENCV_QUALITY_QUALITYGMSD_HPP
7
8 #include "qualitybase.hpp"
9
10 namespace cv
11{
12 namespace quality
13{
14
19 class CV_EXPORTS_W QualityGMSD
20 : public QualityBase {
21 public:
22
28 CV_WRAP cv::Scalar compute( InputArray cmp ) CV_OVERRIDE;
29
31 CV_WRAP bool empty() const CV_OVERRIDE { return _refImgData.empty() && QualityBase::empty(); }
32
34 CV_WRAP void clear() CV_OVERRIDE { _refImgData = _mat_data(); QualityBase::clear(); }
35
40 CV_WRAP static Ptr<QualityGMSD> create( InputArray ref );
41
49 CV_WRAP static cv::Scalar compute( InputArray ref, InputArray cmp, OutputArray qualityMap );
50
51 protected:
52
53 // holds computed values for a mat
54 struct _mat_data
55 {
56 // internal mat type
58
60 gradient_map
61 , gradient_map_squared
62 ;
63
64 // allow default construction
65 _mat_data() = default;
66
67 // construct from mat_type
68 _mat_data(const mat_type&);
69
70 // construct from inputarray
71 _mat_data(InputArray);
72
73 // returns flag if empty
74 bool empty() const { return this->gradient_map.empty() && this->gradient_map_squared.empty(); }
75
76 // compute for a single frame
77 static std::pair<cv::Scalar, mat_type> compute(const _mat_data& lhs, const _mat_data& rhs);
78
79 }; // mat_data
80
83
84 // internal constructor
85 QualityGMSD(_mat_data refImgData)
86 : _refImgData(std::move(refImgData))
87 {}
88
89}; // QualityGMSD
90} // quality
91} // cv
92 #endif
This type is very similar to InputArray except that it is used for input/output and output function p...
Definition: mat.hpp:295
Definition: mat.hpp:2402
bool empty() const
returns true if matrix data is NULL
Definition: qualitybase.hpp:25
cv::UMat _mat_type
internal mat type default
Definition: qualitybase.hpp:54
CV_WRAP void clear() CV_OVERRIDE
Implements Algorithm::clear()
Definition: qualitybase.hpp:46
CV_WRAP bool empty() const CV_OVERRIDE
Implements Algorithm::empty()
Definition: qualitybase.hpp:49
Full reference GMSD algorithm http://www4.comp.polyu.edu.hk/~cslzhang/IQA/GMSD/GMSD....
Definition: qualitygmsd.hpp:20
_mat_data _refImgData
Reference image data
Definition: qualitygmsd.hpp:82
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74
Definition: qualitygmsd.hpp:55