github.com/kaydxh/golang@v0.0.131/pkg/gocv/cgo/third_path/opencv4/include/opencv2/features2d/hal/interface.h (about)

     1  #ifndef OPENCV_FEATURE2D_HAL_INTERFACE_H
     2  #define OPENCV_FEATURE2D_HAL_INTERFACE_H
     3  
     4  #include "opencv2/core/cvdef.h"
     5  //! @addtogroup features2d_hal_interface
     6  //! @{
     7  
     8  //! @name Fast feature detector types
     9  //! @sa cv::FastFeatureDetector
    10  //! @{
    11  #define CV_HAL_TYPE_5_8  0
    12  #define CV_HAL_TYPE_7_12 1
    13  #define CV_HAL_TYPE_9_16 2
    14  //! @}
    15  
    16  //! @name Key point
    17  //! @sa cv::KeyPoint
    18  //! @{
    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  };
    29  //! @}
    30  
    31  //! @}
    32  
    33  #endif