OpenCV 4.5.3(日本語機械翻訳)
marr_hildreth_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_MARR_HILDRETH_HASH_HPP
6 #define OPENCV_MARR_HILDRETH_HASH_HPP
7
8 #include "img_hash_base.hpp"
9
10 namespace cv {
11 namespace img_hash {
12
15
20 class CV_EXPORTS_W MarrHildrethHash : public ImgHashBase
21{
22 public:
26 CV_WRAP float getAlpha() const;
27
31 CV_WRAP float getScale() const;
32
37 CV_WRAP void setKernelParam(float alpha, float scale);
38
43 CV_WRAP static Ptr<MarrHildrethHash> create(float alpha = 2.0f, float scale = 1.0f);
44 protected:
46};
47
56 CV_EXPORTS_W void marrHildrethHash(cv::InputArray inputArr,
57 cv::OutputArray outputArr,
58 float alpha = 2.0f, float scale = 1.0f);
59
61
62}} // cv::img_hash::
63
64 #endif // OPENCV_MARR_HILDRETH_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
The base class for image hash algorithms
Definition: img_hash_base.hpp:19
Marr-Hildreth Operator Based Hash, slowest but more discriminative.
Definition: marr_hildreth_hash.hpp:21
CV_EXPORTS_W void marrHildrethHash(cv::InputArray inputArr, cv::OutputArray outputArr, float alpha=2.0f, float scale=1.0f)
Computes average hash value of the input image
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74