3 #include <visp3/core/vpConfig.h>
4 #include <visp3/core/vpIoTools.h>
5 #include <visp3/gui/vpDisplayGDI.h>
6 #include <visp3/gui/vpDisplayOpenCV.h>
7 #include <visp3/gui/vpDisplayX.h>
8 #include <visp3/io/vpImageIo.h>
10 #include <visp3/mbt/vpMbGenericTracker.h>
12 #include <visp3/io/vpVideoReader.h>
14 int main(
int argc,
char **argv)
16 #if defined(VISP_HAVE_OPENCV)
17 #ifdef ENABLE_VISP_NAMESPACE
22 std::string opt_videoname =
"teabox.mp4";
25 for (
int i = 0; i < argc; i++) {
26 if (std::string(argv[i]) ==
"--name" && i + 1 < argc)
27 opt_videoname = std::string(argv[i + 1]);
28 else if (std::string(argv[i]) ==
"--tracker" && i + 1 < argc)
29 opt_tracker = atoi(argv[i + 1]);
30 else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
31 std::cout <<
"\nUsage: " << argv[0] <<
" [--name <video name>] [--tracker <1=egde|2=keypoint|3=hybrid>]"
38 if (opt_tracker < 1 || opt_tracker > 3) {
39 std::cerr <<
"Wrong tracker type. Correct values are: "
40 "1=egde|2=keypoint|3=hybrid."
48 if (!parentname.empty()) {
49 objectname = parentname +
"/" + objectname;
52 std::cout <<
"Video name: " << opt_videoname << std::endl;
53 std::cout <<
"Tracker requested config files: " << objectname <<
".[init, cao]" << std::endl;
54 std::cout <<
"Tracker optional config files: " << objectname <<
".[ppm]" << std::endl;
64 #if defined(VISP_HAVE_X11)
66 #elif defined(VISP_HAVE_GDI)
68 #elif defined(HAVE_OPENCV_HIGHGUI)
71 display.init(I, 100, 100,
"Model-based tracker");
77 #if !defined(VISP_HAVE_MODULE_KLT)
78 if (opt_tracker >= 2) {
79 std::cout <<
"KLT and hybrid model-based tracker are not available since visp_klt module is missing"
87 #if defined(VISP_HAVE_PUGIXML)
89 tracker.loadConfigFile(objectname +
".xml");
93 if (opt_tracker == 1 || opt_tracker == 3) {
103 tracker.setMovingEdge(me);
106 #if defined(VISP_HAVE_MODULE_KLT) && defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_VIDEO)
107 if (opt_tracker == 2 || opt_tracker == 3) {
109 tracker.setKltMaskBorder(5);
117 tracker.setKltOpencv(klt_settings);
125 tracker.setCameraParameters(cam);
132 tracker.loadModel(objectname +
".cao");
135 tracker.setDisplayFeatures(
true);
138 tracker.initClick(I, objectname +
".init",
true);
149 tracker.getPose(cMo);
153 tracker.getCameraParameters(cam);
167 std::cerr <<
"Catch a ViSP exception: " << e.
what() << std::endl;
174 std::cout <<
"Install OpenCV and rebuild ViSP to use this example." << std::endl;
Generic class defining intrinsic camera parameters.
void initPersProjWithoutDistortion(double px, double py, double u0, double v0)
static const vpColor none
Display for windows using GDI (available on any windows 32 platform).
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void displayFrame(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, double size, const vpColor &color=vpColor::none, unsigned int thickness=1, const vpImagePoint &offset=vpImagePoint(0, 0), const std::string &frameName="", const vpColor &textColor=vpColor::black, const vpImagePoint &textOffset=vpImagePoint(15, 15))
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
error that can be emitted by ViSP classes.
const char * what() const
Implementation of an homogeneous matrix and operations on such kind of matrices.
Wrapper for the KLT (Kanade-Lucas-Tomasi) feature tracker implemented in OpenCV. Thus to enable this ...
void setBlockSize(int blockSize)
void setQuality(double qualityLevel)
void setHarrisFreeParameter(double harris_k)
void setMaxFeatures(int maxCount)
void setMinDistance(double minDistance)
void setWindowSize(int winSize)
void setPyramidLevels(int pyrMaxLevel)
Real-time 6D object pose tracking using its CAD model.
void setMu1(const double &mu_1)
void setRange(const unsigned int &range)
void setLikelihoodThresholdType(const vpLikelihoodThresholdType likelihood_threshold_type)
void setMaskNumber(const unsigned int &mask_number)
void setThreshold(const double &threshold)
void setSampleStep(const double &sample_step)
void setMaskSize(const unsigned int &mask_size)
void setMu2(const double &mu_2)
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
void acquire(vpImage< vpRGBa > &I)
void open(vpImage< vpRGBa > &I)
void setFileName(const std::string &filename)