SLProject  4.2.000
A platform independent 3D computer graphics framework for desktop OS, Android, iOS and online in web browsers
CVFeatureManager.h File Reference
#include <CVTypedefs.h>
Include dependency graph for CVFeatureManager.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  CVFeatureManager
 Wrapper class around OpenCV feature detector & describer. More...
 

Enumerations

enum  CVFeatureType { FT_SIFT , FT_SURF , FT_ORB }
 OpenCV feature type. More...
 
enum  CVDetectDescribeType { DDT_FAST_BRIEF , DDT_RAUL_RAUL , DDT_ORB_ORB , DDT_SURF_SURF , DDT_SIFT_SIFT }
 Feature detector-decriptor types. More...
 

Detailed Description

Date
Autumn 2016
Authors
Marcus Hudritsch
Remarks
Please use clangformat to format the code. See more code style on https://github.com/cpvrlab/SLProject4/wiki/SLProject-Coding-Style

Definition in file CVFeatureManager.h.

Enumeration Type Documentation

◆ CVDetectDescribeType

Feature detector-decriptor types.

Enumerator
DDT_FAST_BRIEF 
DDT_RAUL_RAUL 
DDT_ORB_ORB 
DDT_SURF_SURF 
DDT_SIFT_SIFT 

Definition at line 25 of file CVFeatureManager.h.

26 {
27 #ifndef __EMSCRIPTEN__
29 #endif
32 #ifndef __EMSCRIPTEN__
34 #endif
36 };
@ DDT_ORB_ORB
@ DDT_SURF_SURF
@ DDT_FAST_BRIEF
@ DDT_SIFT_SIFT
@ DDT_RAUL_RAUL

◆ CVFeatureType

OpenCV feature type.

Enumerator
FT_SIFT 
FT_SURF 
FT_ORB 

Definition at line 17 of file CVFeatureManager.h.

18 {
19  FT_SIFT, //!<
20  FT_SURF, //!<
21  FT_ORB //!<
22 };
@ FT_SIFT
@ FT_ORB
@ FT_SURF