OpenCV 4.5.3(日本語機械翻訳)
qualityssim.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_QUALITYSSIM_HPP
6 #define OPENCV_QUALITY_QUALITYSSIM_HPP
7
8 #include "qualitybase.hpp"
9
10 namespace cv
11{
12 namespace quality
13{
14
18 class CV_EXPORTS_W QualitySSIM
19 : public QualityBase {
20 public:
21
27 CV_WRAP cv::Scalar compute( InputArray cmp ) CV_OVERRIDE;
28
30 CV_WRAP bool empty() const CV_OVERRIDE { return _refImgData.empty() && QualityBase::empty(); }
31
33 CV_WRAP void clear() CV_OVERRIDE { _refImgData = _mat_data(); QualityBase::clear(); }
34
39 CV_WRAP static Ptr<QualitySSIM> create( InputArray ref );
40
48 CV_WRAP static cv::Scalar compute( InputArray ref, InputArray cmp, OutputArray qualityMap );
49
50 protected:
51
52 // holds computed values for a mat
53 struct _mat_data
54 {
55 // internal mat type
57
59 I
60 , I_2
61 , mu
62 , mu_2
63 , sigma_2
64 ;
65
66 // allow default construction
67 _mat_data() = default;
68
69 // construct from mat_type
70 _mat_data(const mat_type&);
71
72 // construct from inputarray
73 _mat_data(InputArray);
74
75 // return flag if this is empty
76 bool empty() const { return I.empty() && I_2.empty() && mu.empty() && mu_2.empty() && sigma_2.empty(); }
77
78 // computes ssim and quality map for single frame
79 static std::pair<cv::Scalar, mat_type> compute(const _mat_data& lhs, const _mat_data& rhs);
80
81 }; // mat_data
82
85
90 QualitySSIM( _mat_data refImgData )
91 : _refImgData( std::move(refImgData) )
92 {}
93
94}; // QualitySSIM
95} // quality
96} // cv
97 #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 structural similarity algorithm https://en.wikipedia.org/wiki/Structural_similarity
Definition: qualityssim.hpp:19
_mat_data _refImgData
Reference image data
Definition: qualityssim.hpp:84
QualitySSIM(_mat_data refImgData)
Constructor
Definition: qualityssim.hpp:90
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74
Definition: qualityssim.hpp:54