OpenCV 4.5.3(日本語機械翻訳)
mace.hpp
1 // This file is part of the 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 __mace_h_onboard__
6 #define __mace_h_onboard__
7
8 #include "opencv2/core.hpp"
9
10
11 namespace cv {
12 namespace face {
13
16
17
71 class CV_EXPORTS_W MACE : public cv::Algorithm
72{
73 public:
78 CV_WRAP virtual void salt(const cv::String &passphrase) = 0;
79
86 CV_WRAP virtual void train(cv::InputArrayOfArrays images) = 0;
87
92 CV_WRAP virtual bool same(cv::InputArray query) const = 0;
93
94
100 CV_WRAP static cv::Ptr<MACE> load(const String &filename, const String &objname=String());
101
106 CV_WRAP static cv::Ptr<MACE> create(int IMGSIZE=64);
107};
108
110
111}/* namespace face */
112}/* namespace cv */
113
114 #endif // __mace_h_onboard__
This is a base class for all more or less complex algorithms in OpenCV
Definition: core.hpp:3091
Minimum Average Correlation Energy Filter useful for authentication with (cancellable) biometrical fe...
Definition: mace.hpp:72
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74