OpenCV 4.5.3(日本語機械翻訳)
color_moment_hash.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_COLOR_MOMENT_HASH_HPP
6 #define OPENCV_COLOR_MOMENT_HASH_HPP
7
8 #include "img_hash_base.hpp"
9
10 namespace cv {
11 namespace img_hash {
12
15
20 class CV_EXPORTS_W ColorMomentHash : public ImgHashBase
21{
22 public:
23 CV_WRAP static Ptr<ColorMomentHash> create();
24 protected:
26};
27
35 CV_EXPORTS_W void colorMomentHash(cv::InputArray inputArr, cv::OutputArray outputArr);
36
38
39}} // cv::img_hash::
40
41 #endif // OPENCV_COLOR_MOMENT_HASH_HPP
This type is very similar to InputArray except that it is used for input/output and output function p...
Definition: mat.hpp:295
Image hash based on color moments.
Definition: color_moment_hash.hpp:21
The base class for image hash algorithms
Definition: img_hash_base.hpp:19
CV_EXPORTS_W void colorMomentHash(cv::InputArray inputArr, cv::OutputArray outputArr)
Computes color moment hash of the input, the algorithm is come from the paper "Perceptual Hashing f...
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74