#include "CvTestbed.h"#include "Camera.h"#include "TrackerPsa.h"#include "TrackerStat.h"#include "TrackerFeatures.h"#include "Shared.h"
Go to the source code of this file.
Functions | |
| int | keycallback (int key) |
| int | main (int argc, char *argv[]) |
| void | track_features (IplImage *image, IplImage *img_gray) |
| void | track_none (IplImage *image, IplImage *img_gray) |
| void | track_psa (IplImage *image, IplImage *img_gray) |
| void | track_psa_rot (IplImage *image, IplImage *img_gray) |
| void | track_stat (IplImage *image, IplImage *img_gray) |
| void | track_stat_rot (IplImage *image, IplImage *img_gray) |
| void | trackers (IplImage *image, IplImage *img_gray) |
| void | videocallback (IplImage *image) |
Variables | |
| std::stringstream | calibrationFilename |
| CvFont | font |
| const int | nof_trackers = 6 |
| bool | reset = true |
| int | tracker = 0 |
| char | tracker_names [nof_trackers][64] |
| int keycallback | ( | int | key | ) |
Definition at line 141 of file SampleTrack.cpp.
| int main | ( | int | argc, |
| char * | argv[] | ||
| ) |
Definition at line 154 of file SampleTrack.cpp.
| void track_features | ( | IplImage * | image, |
| IplImage * | img_gray | ||
| ) |
Definition at line 82 of file SampleTrack.cpp.
| void track_none | ( | IplImage * | image, |
| IplImage * | img_gray | ||
| ) |
Definition at line 15 of file SampleTrack.cpp.
| void track_psa | ( | IplImage * | image, |
| IplImage * | img_gray | ||
| ) |
Definition at line 18 of file SampleTrack.cpp.
| void track_psa_rot | ( | IplImage * | image, |
| IplImage * | img_gray | ||
| ) |
Definition at line 32 of file SampleTrack.cpp.
| void track_stat | ( | IplImage * | image, |
| IplImage * | img_gray | ||
| ) |
Definition at line 50 of file SampleTrack.cpp.
| void track_stat_rot | ( | IplImage * | image, |
| IplImage * | img_gray | ||
| ) |
Definition at line 64 of file SampleTrack.cpp.
| void trackers | ( | IplImage * | image, |
| IplImage * | img_gray | ||
| ) |
| void videocallback | ( | IplImage * | image | ) |
Definition at line 115 of file SampleTrack.cpp.
| std::stringstream calibrationFilename |
Definition at line 13 of file SampleTrack.cpp.
| CvFont font |
Definition at line 12 of file SampleTrack.cpp.
| const int nof_trackers = 6 |
Definition at line 97 of file SampleTrack.cpp.
| bool reset = true |
Definition at line 11 of file SampleTrack.cpp.
| int tracker = 0 |
Definition at line 10 of file SampleTrack.cpp.
| char tracker_names[nof_trackers][64] |
{
"No tracker - Press any key to change",
"TrackerPsa",
"TrackerPsaRot",
"TrackerStat",
"TrackerStatRot",
"TrackerFeatures",
}
Definition at line 106 of file SampleTrack.cpp.