OpenCV 4.5.3(日本語機械翻訳)
bif.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_BIF_HPP__
46 #define __OPENCV_BIF_HPP__
47
48 #include "opencv2/core.hpp"
49
50 namespace cv {
51 namespace face {
52
57 class CV_EXPORTS_W BIF : public Algorithm {
58 public:
60 CV_WRAP virtual int getNumBands() const = 0;
61
63 CV_WRAP virtual int getNumRotations() const = 0;
64
69 CV_WRAP virtual void compute(InputArray image,
70 OutputArray features) const = 0;
71
77 CV_WRAP static Ptr<BIF> create(int num_bands = 8, int num_rotations = 12);
78};
79
80} // namespace cv
81} // namespace face
82
83 #endif // #ifndef __OPENCV_FACEREC_HPP__
This type is very similar to InputArray except that it is used for input/output and output function p...
Definition: mat.hpp:295
This is a base class for all more or less complex algorithms in OpenCV
Definition: core.hpp:3091
Definition: bif.hpp:57
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74