You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			551 B
		
	
	
	
		
			C
		
	
			
		
		
	
	
			34 lines
		
	
	
		
			551 B
		
	
	
	
		
			C
		
	
#ifndef OPENCV_FEATURE2D_HAL_INTERFACE_H
 | 
						|
#define OPENCV_FEATURE2D_HAL_INTERFACE_H
 | 
						|
 | 
						|
#include "opencv2/core/cvdef.h"
 | 
						|
//! @addtogroup features2d_hal_interface
 | 
						|
//! @{
 | 
						|
 | 
						|
//! @name Fast feature detector types
 | 
						|
//! @sa cv::FastFeatureDetector
 | 
						|
//! @{
 | 
						|
#define CV_HAL_TYPE_5_8  0
 | 
						|
#define CV_HAL_TYPE_7_12 1
 | 
						|
#define CV_HAL_TYPE_9_16 2
 | 
						|
//! @}
 | 
						|
 | 
						|
//! @name Key point
 | 
						|
//! @sa cv::KeyPoint
 | 
						|
//! @{
 | 
						|
struct CV_EXPORTS cvhalKeyPoint
 | 
						|
{
 | 
						|
    float x;
 | 
						|
    float y;
 | 
						|
    float size;
 | 
						|
    float angle;
 | 
						|
    float response;
 | 
						|
    int octave;
 | 
						|
    int class_id;
 | 
						|
};
 | 
						|
//! @}
 | 
						|
 | 
						|
//! @}
 | 
						|
 | 
						|
#endif
 |