OpenCV 4.5.3(日本語機械翻訳)
features2d/hal/interface.h
1 #ifndef OPENCV_FEATURE2D_HAL_INTERFACE_H
2 #define OPENCV_FEATURE2D_HAL_INTERFACE_H
3
4 #include "opencv2/core/cvdef.h"
7
11 #define CV_HAL_TYPE_5_8 0
12 #define CV_HAL_TYPE_7_12 1
13 #define CV_HAL_TYPE_9_16 2
15
19 struct CV_EXPORTS cvhalKeyPoint
20{
21 float x;
22 float y;
23 float size;
24 float angle;
25 float response;
26 int octave;
27 int class_id;
28};
30
32
33 #endif
Definition: features2d/hal/interface.h:20