TrackerFeatures tracks features using OpenCV's cvGoodFeaturesToTrack and cvCalcOpticalFlowPyrLK
More...
#include <TrackerFeatures.h>
|
int | AddFeatures (IplImage *mask=NULL) |
| add features to the previously tracked frame if there are less than min_features More...
|
|
void | ChangeSettings (int _max_features=100, int _min_features=90, double _quality_level=0.01, double _min_distance=10) |
| Change settings while running. More...
|
|
bool | DelFeature (int index) |
| Stop tracking the identified feature (with index for features array) More...
|
|
bool | DelFeatureId (int id) |
| Stop tracking the identified feature (with feature id) More...
|
|
IplImage * | NewFeatureMask () |
| Create and get the pointer to new_features_mask. More...
|
|
int | Purge () |
| Purge features that are considerably closer than the defined min_distance. More...
|
|
void | Reset () |
| Reset. More...
|
|
double | Reset (IplImage *img, IplImage *mask) |
| Reset track features on specified mask area. More...
|
|
double | Track (IplImage *img) |
| Track features. More...
|
|
double | Track (IplImage *img, bool add_features) |
| Track features. More...
|
|
double | Track (IplImage *img, IplImage *mask) |
| Track features. More...
|
|
| TrackerFeatures (int _max_features=100, int _min_features=90, double _quality_level=0.01, double _min_distance=10, int _pyr_levels=1, int _win_size=3) |
| Constructor for TrackerFeatures tracks features using OpenCV's cvGoodFeaturesToTrack and cvCalcOpticalFlowPyrLK. More...
|
|
| ~TrackerFeatures () |
| Destructor. More...
|
|
virtual void | Compensate (double *x, double *y) |
|
| Tracker () |
|
|
double | TrackHid (IplImage *img, IplImage *mask=NULL, bool add_features=true) |
| Reset track features on specified mask area. More...
|
|
TrackerFeatures tracks features using OpenCV's cvGoodFeaturesToTrack and cvCalcOpticalFlowPyrLK
- Examples:
- SampleTrack.cpp.
Definition at line 40 of file TrackerFeatures.h.
◆ TrackerFeatures()
alvar::TrackerFeatures::TrackerFeatures |
( |
int |
_max_features = 100 , |
|
|
int |
_min_features = 90 , |
|
|
double |
_quality_level = 0.01 , |
|
|
double |
_min_distance = 10 , |
|
|
int |
_pyr_levels = 1 , |
|
|
int |
_win_size = 3 |
|
) |
| |
Constructor for TrackerFeatures tracks features using OpenCV's cvGoodFeaturesToTrack and cvCalcOpticalFlowPyrLK.
- Parameters
-
_max_features | The maximum amount of features to be tracked |
_min_features | The minimum amount of features. The featureset is filled up when the number of features is lower than this. |
_quality_level | Multiplier for the maxmin eigenvalue; specifies minimal accepted quality of image corners. |
_min_distance | Limit, specifying minimum possible distance between returned corners; Euclidian distance is used. If 0 given we use default value aiming for uniform cover: _min_distance = 0.8*sqrt(x_res*y_res/max_features)) |
_pyr_levels | Number of pyramid levels |
Definition at line 32 of file TrackerFeatures.cpp.
◆ ~TrackerFeatures()
alvar::TrackerFeatures::~TrackerFeatures |
( |
| ) |
|
◆ AddFeatures()
int alvar::TrackerFeatures::AddFeatures |
( |
IplImage * |
mask = NULL | ) |
|
add features to the previously tracked frame if there are less than min_features
Definition at line 227 of file TrackerFeatures.cpp.
◆ ChangeSettings()
void alvar::TrackerFeatures::ChangeSettings |
( |
int |
_max_features = 100 , |
|
|
int |
_min_features = 90 , |
|
|
double |
_quality_level = 0.01 , |
|
|
double |
_min_distance = 10 |
|
) |
| |
◆ DelFeature()
bool alvar::TrackerFeatures::DelFeature |
( |
int |
index | ) |
|
Stop tracking the identified feature (with index for features array)
Definition at line 105 of file TrackerFeatures.cpp.
◆ DelFeatureId()
bool alvar::TrackerFeatures::DelFeatureId |
( |
int |
id | ) |
|
◆ NewFeatureMask()
IplImage * alvar::TrackerFeatures::NewFeatureMask |
( |
| ) |
|
◆ Purge()
int alvar::TrackerFeatures::Purge |
( |
| ) |
|
Purge features that are considerably closer than the defined min_distance.
Note, that we always try to maintain the smaller id's assuming that they are older ones
- Examples:
- SampleTrack.cpp.
Definition at line 122 of file TrackerFeatures.cpp.
◆ Reset() [1/2]
void alvar::TrackerFeatures::Reset |
( |
| ) |
|
◆ Reset() [2/2]
double alvar::TrackerFeatures::Reset |
( |
IplImage * |
img, |
|
|
IplImage * |
mask |
|
) |
| |
◆ Track() [1/3]
double alvar::TrackerFeatures::Track |
( |
IplImage * |
img | ) |
|
|
inlinevirtual |
◆ Track() [2/3]
double alvar::TrackerFeatures::Track |
( |
IplImage * |
img, |
|
|
bool |
add_features |
|
) |
| |
◆ Track() [3/3]
double alvar::TrackerFeatures::Track |
( |
IplImage * |
img, |
|
|
IplImage * |
mask |
|
) |
| |
◆ TrackHid()
double alvar::TrackerFeatures::TrackHid |
( |
IplImage * |
img, |
|
|
IplImage * |
mask = NULL , |
|
|
bool |
add_features = true |
|
) |
| |
|
protected |
◆ feature_count
int alvar::TrackerFeatures::feature_count |
◆ features
CvPoint2D32f* alvar::TrackerFeatures::features |
◆ frame_count
int alvar::TrackerFeatures::frame_count |
|
protected |
◆ gray
IplImage* alvar::TrackerFeatures::gray |
|
protected |
◆ ids
int* alvar::TrackerFeatures::ids |
◆ img_eig
IplImage* alvar::TrackerFeatures::img_eig |
|
protected |
◆ img_tmp
IplImage* alvar::TrackerFeatures::img_tmp |
|
protected |
◆ mask
IplImage* alvar::TrackerFeatures::mask |
|
protected |
◆ max_features
int alvar::TrackerFeatures::max_features |
|
protected |
◆ min_distance
double alvar::TrackerFeatures::min_distance |
|
protected |
◆ min_features
int alvar::TrackerFeatures::min_features |
|
protected |
◆ next_id
int alvar::TrackerFeatures::next_id |
|
protected |
◆ prev_feature_count
int alvar::TrackerFeatures::prev_feature_count |
◆ prev_features
CvPoint2D32f* alvar::TrackerFeatures::prev_features |
◆ prev_gray
IplImage* alvar::TrackerFeatures::prev_gray |
|
protected |
◆ prev_ids
int* alvar::TrackerFeatures::prev_ids |
◆ prev_pyramid
IplImage* alvar::TrackerFeatures::prev_pyramid |
|
protected |
◆ pyr_levels
int alvar::TrackerFeatures::pyr_levels |
|
protected |
◆ pyramid
IplImage* alvar::TrackerFeatures::pyramid |
|
protected |
◆ quality_level
double alvar::TrackerFeatures::quality_level |
|
protected |
◆ status
char* alvar::TrackerFeatures::status |
|
protected |
◆ win_size
int alvar::TrackerFeatures::win_size |
|
protected |
◆ x_res
int alvar::TrackerFeatures::x_res |
|
protected |
◆ y_res
int alvar::TrackerFeatures::y_res |
|
protected |
The documentation for this class was generated from the following files: