OpenCV 4.5.3(日本語機械翻訳)
qualitymse.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_QUALITYMSE_HPP
6 #define OPENCV_QUALITY_QUALITYMSE_HPP
7
8 #include "qualitybase.hpp"
9
10 namespace cv
11{
12 namespace quality
13{
14
18 class CV_EXPORTS_W QualityMSE : public QualityBase {
19 public:
20
25 CV_WRAP cv::Scalar compute( InputArrayOfArrays cmpImgs ) CV_OVERRIDE;
26
28 CV_WRAP bool empty() const CV_OVERRIDE { return _ref.empty() && QualityBase::empty(); }
29
31 CV_WRAP void clear() CV_OVERRIDE { _ref = _mat_type(); QualityBase::clear(); }
32
37 CV_WRAP static Ptr<QualityMSE> create(InputArray ref);
38
46 CV_WRAP static cv::Scalar compute( InputArray ref, InputArray cmp, OutputArray qualityMap );
47
48 protected:
49
52
58 : _ref(std::move(ref))
59 {}
60
61}; // QualityMSE
62} // quality
63} // cv
64 #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
Definition: qualitybase.hpp:25
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 mean square error algorithm https://en.wikipedia.org/wiki/Mean_squared_error
Definition: qualitymse.hpp:18
QualityMSE(QualityBase::_mat_type ref)
Constructor
Definition: qualitymse.hpp:57
QualityBase::_mat_type _ref
Reference image, converted to internal mat type
Definition: qualitymse.hpp:51
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74