OpenCV 4.5.3(日本語機械翻訳)
face.hpp
1 /*
2 By downloading, copying, installing or using the software you agree to this
3 license. If you do not agree to this license, do not download, install,
4 copy or use the software.
5
6 License Agreement
7 For Open Source Computer Vision Library
8 (3-clause BSD License)
9
10 Copyright (C) 2013, OpenCV Foundation, all rights reserved.
11 Third party copyrights are property of their respective owners.
12
13 Redistribution and use in source and binary forms, with or without modification,
14 are permitted provided that the following conditions are met:
15
16 * Redistributions of source code must retain the above copyright notice,
17 this list of conditions and the following disclaimer.
18
19 * Redistributions in binary form must reproduce the above copyright notice,
20 this list of conditions and the following disclaimer in the documentation
21 and/or other materials provided with the distribution.
22
23 * Neither the names of the copyright holders nor the names of the contributors
24 may be used to endorse or promote products derived from this software
25 without specific prior written permission.
26
27 This software is provided by the copyright holders and contributors "as is" and
28 any express or implied warranties, including, but not limited to, the implied
29 warranties of merchantability and fitness for a particular purpose are
30 disclaimed. In no event shall copyright holders or contributors be liable for
31 any direct, indirect, incidental, special, exemplary, or consequential damages
32 (including, but not limited to, procurement of substitute goods or services;
33 loss of use, data, or profits; or business interruption) however caused
34 and on any theory of liability, whether in contract, strict liability,
35 or tort (including negligence or otherwise) arising in any way out of
36 the use of this software, even if advised of the possibility of such damage.
37 */
38
39 #ifndef __OPENCV_FACE_HPP__
40 #define __OPENCV_FACE_HPP__
41
50 #include "opencv2/core.hpp"
51 #include "face/predict_collector.hpp"
52 #include <map>
53
54 namespace cv { namespace face {
55
58
157 class CV_EXPORTS_W FaceRecognizer : public Algorithm
158{
159 public:
209 CV_WRAP virtual void train(InputArrayOfArrays src, InputArray labels) = 0;
210
258 CV_WRAP virtual void update(InputArrayOfArrays src, InputArray labels);
259
261 CV_WRAP_AS(predict_label) int predict(InputArray src) const;
262
263
299 CV_WRAP void predict(InputArray src, CV_OUT int &label, CV_OUT double &confidence) const;
300
301
309 CV_WRAP_AS(predict_collect) virtual void predict(InputArray src, Ptr<PredictCollector> collector) const = 0;
310
323 CV_WRAP virtual void write(const String& filename) const;
324
332 CV_WRAP virtual void read(const String& filename);
333
338 virtual void write(FileStorage& fs) const CV_OVERRIDE = 0;
339
341 virtual void read(const FileNode& fn) CV_OVERRIDE = 0;
342
344 virtual bool empty() const CV_OVERRIDE = 0;
345
350 CV_WRAP virtual void setLabelInfo(int label, const String& strInfo);
351
357 CV_WRAP virtual String getLabelInfo(int label) const;
358
364 CV_WRAP virtual std::vector<int> getLabelsByString(const String& str) const;
366 virtual double getThreshold() const = 0;
368 virtual void setThreshold(double val) = 0;
369protected:
370 // Stored pairs "label id - string info"
371 std::map<int, String> _labelsInfo;
372};
373
375
376}}
377
378 #include "opencv2/face/facerec.hpp"
379 #include "opencv2/face/facemark.hpp"
380 #include "opencv2/face/facemark_train.hpp"
381 #include "opencv2/face/facemarkLBF.hpp"
382 #include "opencv2/face/facemarkAAM.hpp"
383 #include "opencv2/face/face_alignment.hpp"
384 #include "opencv2/face/mace.hpp"
385
386 #endif // __OPENCV_FACE_HPP__
This is a base class for all more or less complex algorithms in OpenCV
Definition: core.hpp:3091
File Storage Node class.
Definition: persistence.hpp:482
XML/YAML/JSON file storage class that encapsulates all the information necessary for writing or readi...
Definition: persistence.hpp:304
Abstract base class for all face recognition models
Definition: face.hpp:158
CV_WRAP_AS(predict_label) int predict(InputArray src) const
virtual void write(FileStorage &fs) const CV_OVERRIDE=0
virtual void read(const FileNode &fn) CV_OVERRIDE=0
virtual bool empty() const CV_OVERRIDE=0
CV_WRAP_AS(predict_collect) virtual void predict(InputArray src
if implemented - send all result of prediction to collector that can be used for somehow custom resul...
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74