OpenCV 4.5.3(日本語機械翻訳)
predict_collector.hpp
1 /*
2 By downloading, copying, installing or using the software you agree to this license.
3 If you do not agree to this license, do not download, install,
4 copy or use the software.
5
6
7 License Agreement
8 For Open Source Computer Vision Library
9 (3-clause BSD License)
10
11 Copyright (C) 2000-2015, Intel Corporation, all rights reserved.
12 Copyright (C) 2009-2011, Willow Garage Inc., all rights reserved.
13 Copyright (C) 2009-2015, NVIDIA Corporation, all rights reserved.
14 Copyright (C) 2010-2013, Advanced Micro Devices, Inc., all rights reserved.
15 Copyright (C) 2015, OpenCV Foundation, all rights reserved.
16 Copyright (C) 2015, Itseez Inc., all rights reserved.
17 Third party copyrights are property of their respective owners.
18
19 Redistribution and use in source and binary forms, with or without modification,
20 are permitted provided that the following conditions are met:
21
22 * Redistributions of source code must retain the above copyright notice,
23 this list of conditions and the following disclaimer.
24
25 * Redistributions in binary form must reproduce the above copyright notice,
26 this list of conditions and the following disclaimer in the documentation
27 and/or other materials provided with the distribution.
28
29 * Neither the names of the copyright holders nor the names of the contributors
30 may be used to endorse or promote products derived from this software
31 without specific prior written permission.
32
33 This software is provided by the copyright holders and contributors "as is" and
34 any express or implied warranties, including, but not limited to, the implied
35 warranties of merchantability and fitness for a particular purpose are disclaimed.
36 In no event shall copyright holders or contributors be liable for any direct,
37 indirect, incidental, special, exemplary, or consequential damages
38 (including, but not limited to, procurement of substitute goods or services;
39 loss of use, data, or profits; or business interruption) however caused
40 and on any theory of liability, whether in contract, strict liability,
41 or tort (including negligence or otherwise) arising in any way out of
42 the use of this software, even if advised of the possibility of such damage.
43 */
44
45 #ifndef __OPENCV_PREDICT_COLLECTOR_HPP__
46 #define __OPENCV_PREDICT_COLLECTOR_HPP__
47
48 #include <vector>
49 #include <map>
50 #include <utility>
51 #include <cfloat>
52
53 #include "opencv2/core/base.hpp"
54
55 namespace cv {
56 namespace face {
59
61 class CV_EXPORTS_W PredictCollector
62{
63 public:
64 virtual ~PredictCollector() {}
65
69 virtual void init(size_t size) { CV_UNUSED(size); }
70
75 virtual bool collect(int label, double dist) = 0;
76};
77
82 class CV_EXPORTS_W StandardCollector : public PredictCollector
83{
84 public:
86 {
87 int label;
88 double distance;
89 PredictResult(int label_ = -1, double distance_ = DBL_MAX) : label(label_), distance(distance_) {}
90 };
91 protected:
92 double threshold;
93 PredictResult minRes;
94 std::vector<PredictResult> data;
95 public:
99 StandardCollector(double threshold_ = DBL_MAX);
101 void init(size_t size) CV_OVERRIDE;
103 bool collect(int label, double dist) CV_OVERRIDE;
105 CV_WRAP int getMinLabel() const;
107 CV_WRAP double getMinDist() const;
112 CV_WRAP std::vector< std::pair<int, double> > getResults(bool sorted = false) const;
116 std::map<int, double> getResultsMap() const;
120 CV_WRAP static Ptr<StandardCollector> create(double threshold = DBL_MAX);
121};
122
124}
125}
126
127 #endif
Abstract base class for all strategies of prediction result handling
Definition: predict_collector.hpp:62
virtual void init(size_t size)
Interface method called by face recognizer before results processing
Definition: predict_collector.hpp:69
virtual bool collect(int label, double dist)=0
Interface method called by face recognizer for each result
Default predict collector
Definition: predict_collector.hpp:83
StandardCollector(double threshold_=DBL_MAX)
Constructor
bool collect(int label, double dist) CV_OVERRIDE
overloaded interface method
std::map< int, double > getResultsMap() const
Return results as map Labels are keys, values are minimal distances
void init(size_t size) CV_OVERRIDE
overloaded interface method
CV_EXPORTS_W double threshold(InputArray src, OutputArray dst, double thresh, double maxval, int type)
Applies a fixed-level threshold to each array element.
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74
Definition: predict_collector.hpp:86