|
VLTIF
CS426FinalProject
|
#include <PointTracker.h>
Public Member Functions | |
| Tuple () | |
| Default Constructor. | |
| Tuple (const Point2f &pt) | |
| Parameterized Constructor. | |
Public Attributes | |
| Point2f | centroid |
| Center of point. | |
| size_t | found |
| Detection Status Code. | |
| double | strength |
| Strength/stability of point. | |
| size_t | span |
| Number of frames the point has existed. | |
Class which contains relevant information for keypoints. The point, if it was detected in the frame, the strength / stability of the point, and the length of time is has existed in the video.
Definition at line 43 of file PointTracker.h.
| Tuple::Tuple | ( | ) |
| Tuple::Tuple | ( | const Point2f & | pt | ) |
| Point2f Tuple::centroid |
Center of point.
Definition at line 53 of file PointTracker.h.
| size_t Tuple::found |
Detection Status Code.
Definition at line 56 of file PointTracker.h.
| size_t Tuple::span |
Number of frames the point has existed.
Definition at line 62 of file PointTracker.h.
| double Tuple::strength |
Strength/stability of point.
Definition at line 59 of file PointTracker.h.