OpenCV 4.5.3(日本語機械翻訳)
img_hash_base.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_IMG_HASH_BASE_HPP
6 #define OPENCV_IMG_HASH_BASE_HPP
7
8 #include "opencv2/core.hpp"
9
10 namespace cv {
11 namespace img_hash {
12
15
18 class CV_EXPORTS_W ImgHashBase : public Algorithm
19{
20 public:
21 class ImgHashImpl;
22
28 CV_WRAP void compute(cv::InputArray inputArr, cv::OutputArray outputArr);
35 CV_WRAP double compare(cv::InputArray hashOne, cv::InputArray hashTwo) const;
36 protected:
38 protected:
39 Ptr<ImgHashImpl> pImpl;
40};
41
43
44} } // cv::img_hash::
45
46 #endif // OPENCV_IMG_HASH_BASE_HPP
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
The base class for image hash algorithms
Definition: img_hash_base.hpp:19
CV_EXPORTS_W void compare(InputArray src1, InputArray src2, OutputArray dst, int cmpop)
Performs the per-element comparison of two arrays or an array and scalar value.
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74