OpenCV 4.5.3(日本語機械翻訳)
block_mean_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_BLOCK_MEAN_HASH_HPP
6 #define OPENCV_BLOCK_MEAN_HASH_HPP
7
8 #include "img_hash_base.hpp"
9
10 namespace cv {
11 namespace img_hash {
12
15
17{
20};
21
26 class CV_EXPORTS_W BlockMeanHash : public ImgHashBase
27{
28 public:
32 CV_WRAP void setMode(int mode);
33 CV_WRAP std::vector<double> getMean() const;
34 CV_WRAP static Ptr<BlockMeanHash> create(int mode = BLOCK_MEAN_HASH_MODE_0);
35 protected:
36 BlockMeanHash() {}
37};
38
44 CV_EXPORTS_W void blockMeanHash(cv::InputArray inputArr,
45 cv::OutputArray outputArr,
46 int mode = BLOCK_MEAN_HASH_MODE_0);
47
49
50}} // cv::img_hash::
51
52 #endif // OPENCV_BLOCK_MEAN_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 block mean.
Definition: block_mean_hash.hpp:27
The base class for image hash algorithms
Definition: img_hash_base.hpp:19
CV_EXPORTS_W void blockMeanHash(cv::InputArray inputArr, cv::OutputArray outputArr, int mode=BLOCK_MEAN_HASH_MODE_0)
Computes block mean hash of the input image
BlockMeanHashMode
Definition: block_mean_hash.hpp:17
@ BLOCK_MEAN_HASH_MODE_0
use fewer block and generate 16*16/8 uchar hash value
Definition: block_mean_hash.hpp:18
@ BLOCK_MEAN_HASH_MODE_1
use block blocks(step sizes/2), generate 31*31/8 + 1 uchar hash value
Definition: block_mean_hash.hpp:19
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74