Visual Servoing Platform  version 3.6.1 under development (2024-11-15)
tutorial-mb-generic-tracker.cpp
1 #include <visp3/core/vpConfig.h>
3 #include <visp3/core/vpIoTools.h>
4 #include <visp3/gui/vpDisplayGDI.h>
5 #include <visp3/gui/vpDisplayOpenCV.h>
6 #include <visp3/gui/vpDisplayX.h>
7 #include <visp3/io/vpImageIo.h>
9 #include <visp3/mbt/vpMbGenericTracker.h>
11 #include <visp3/io/vpVideoReader.h>
12 
13 int main(int argc, char **argv)
14 {
15 #if defined(VISP_HAVE_OPENCV)
16 #ifdef ENABLE_VISP_NAMESPACE
17  using namespace VISP_NAMESPACE_NAME;
18 #endif
19 
20  try {
21  std::string opt_videoname = "model/teabox/teabox.mp4";
22  std::string opt_modelname = "model/teabox/teabox.cao";
23  int opt_tracker = 2; // Hybrid tracker
24 
25  for (int i = 0; i < argc; i++) {
26  if (std::string(argv[i]) == "--video")
27  opt_videoname = std::string(argv[i + 1]);
28  else if (std::string(argv[i]) == "--model")
29  opt_modelname = std::string(argv[i + 1]);
30  else if (std::string(argv[i]) == "--tracker")
31  opt_tracker = atoi(argv[i + 1]);
32  else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
33  std::cout << "\nUsage: " << argv[0]
34  << " [--video <video name>] [--model <model name>]"
35  " [--tracker <0=egde|1=keypoint|2=hybrid>] [--help] [-h]\n"
36  << std::endl;
37  return EXIT_SUCCESS;
38  }
39  }
40  std::string parentname = vpIoTools::getParent(opt_modelname);
41  std::string objectname = vpIoTools::getNameWE(opt_modelname);
42 
43  if (!parentname.empty())
44  objectname = parentname + "/" + objectname;
45 
46  std::cout << "Video name: " << opt_videoname << std::endl;
47  std::cout << "Tracker requested config files: " << objectname << ".[init, cao]" << std::endl;
48  std::cout << "Tracker optional config files: " << objectname << ".[ppm]" << std::endl;
49 
57 
58  vpVideoReader g;
59  g.setFileName(opt_videoname);
60  g.open(I);
61 
62  vpDisplay *display = nullptr;
63 #if defined(VISP_HAVE_X11)
64  display = new vpDisplayX;
65 #elif defined(VISP_HAVE_GDI)
66  display = new vpDisplayGDI;
67 #elif defined(HAVE_OPENCV_HIGHGUI)
68  display = new vpDisplayOpenCV;
69 #endif
70  display->init(I, 100, 100, "Model-based tracker");
71 
73  vpMbGenericTracker tracker;
74  if (opt_tracker == 0)
76 #if defined(VISP_HAVE_MODULE_KLT) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_VIDEO)
77  else if (opt_tracker == 1)
78  tracker.setTrackerType(vpMbGenericTracker::KLT_TRACKER);
79  else
80  tracker.setTrackerType(vpMbGenericTracker::EDGE_TRACKER | vpMbGenericTracker::KLT_TRACKER);
81 #else
82  else {
83  std::cout << "klt and hybrid model-based tracker are not available since visp_klt module is not available. "
84  "In CMakeGUI turn visp_klt module ON, configure and build ViSP again."
85  << std::endl;
86  return EXIT_FAILURE;
87  }
88 #endif
90 
92  if (opt_tracker == 0 || opt_tracker == 2) {
93  vpMe me;
94  me.setMaskSize(5);
95  me.setMaskNumber(180);
96  me.setRange(8);
98  me.setThreshold(20);
99  me.setMu1(0.5);
100  me.setMu2(0.5);
101  me.setSampleStep(4);
102  tracker.setMovingEdge(me);
103  // Print moving-edges settings
104  me = tracker.getMovingEdge();
105  me.print();
106  }
107 
108 #if defined(VISP_HAVE_MODULE_KLT) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_VIDEO)
109  if (opt_tracker == 1 || opt_tracker == 2) {
110  vpKltOpencv klt_settings;
111  klt_settings.setMaxFeatures(300);
112  klt_settings.setWindowSize(5);
113  klt_settings.setQuality(0.015);
114  klt_settings.setMinDistance(8);
115  klt_settings.setHarrisFreeParameter(0.01);
116  klt_settings.setBlockSize(3);
117  klt_settings.setPyramidLevels(3);
118  tracker.setKltOpencv(klt_settings);
119  tracker.setKltMaskBorder(5);
120  }
121 #endif
122 
124  cam.initPersProjWithoutDistortion(839, 839, 325, 243);
126  tracker.setCameraParameters(cam);
128 
130  tracker.loadModel(objectname + ".cao");
133  tracker.setDisplayFeatures(true);
136  tracker.initClick(I, objectname + ".init", true);
138 
139 
140 
141  while (!g.end()) {
142  g.acquire(I);
145  tracker.track(I);
148  tracker.getPose(cMo);
151  tracker.getCameraParameters(cam);
152  tracker.display(I, cMo, cam, vpColor::red, 2);
154  vpDisplay::displayFrame(I, cMo, cam, 0.025, vpColor::none, 3);
155  vpDisplay::displayText(I, 10, 10, "A click to exit...", vpColor::red);
156  vpDisplay::flush(I);
157 
158  if (vpDisplay::getClick(I, false))
159  break;
160  }
163  delete display;
165  }
166  catch (const vpException &e) {
167  std::cout << "Catch a ViSP exception: " << e << std::endl;
168  return EXIT_FAILURE;
169  }
170 #else
171  (void)argc;
172  (void)argv;
173  std::cout << "Install OpenCV and rebuild ViSP to use this example." << std::endl;
174 #endif
175  return EXIT_SUCCESS;
176 }
Generic class defining intrinsic camera parameters.
void initPersProjWithoutDistortion(double px, double py, double u0, double v0)
static const vpColor red
Definition: vpColor.h:217
static const vpColor none
Definition: vpColor.h:229
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:130
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
Class that defines generic functionalities for display.
Definition: vpDisplay.h:178
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.
Definition: vpException.h:60
Implementation of an homogeneous matrix and operations on such kind of matrices.
static std::string getNameWE(const std::string &pathname)
Definition: vpIoTools.cpp:1227
static std::string getParent(const std::string &pathname)
Definition: vpIoTools.cpp:1314
Wrapper for the KLT (Kanade-Lucas-Tomasi) feature tracker implemented in OpenCV. Thus to enable this ...
Definition: vpKltOpencv.h:74
void setBlockSize(int blockSize)
Definition: vpKltOpencv.h:267
void setQuality(double qualityLevel)
Definition: vpKltOpencv.h:356
void setHarrisFreeParameter(double harris_k)
Definition: vpKltOpencv.h:275
void setMaxFeatures(int maxCount)
Definition: vpKltOpencv.h:315
void setMinDistance(double minDistance)
Definition: vpKltOpencv.h:324
void setWindowSize(int winSize)
Definition: vpKltOpencv.h:377
void setPyramidLevels(int pyrMaxLevel)
Definition: vpKltOpencv.h:343
Real-time 6D object pose tracking using its CAD model.
virtual void setCameraParameters(const vpCameraParameters &camera) VP_OVERRIDE
virtual void setDisplayFeatures(bool displayF) VP_OVERRIDE
virtual void getCameraParameters(vpCameraParameters &camera) const VP_OVERRIDE
virtual void getPose(vpHomogeneousMatrix &cMo) const VP_OVERRIDE
virtual void setMovingEdge(const vpMe &me)
virtual void track(const vpImage< unsigned char > &I) VP_OVERRIDE
virtual void loadModel(const std::string &modelFile, bool verbose=false, const vpHomogeneousMatrix &T=vpHomogeneousMatrix()) VP_OVERRIDE
virtual void setTrackerType(int type)
virtual vpMe getMovingEdge() const
virtual void display(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, const vpColor &col, unsigned int thickness=1, bool displayFullModel=false) VP_OVERRIDE
Definition: vpMe.h:134
void setMu1(const double &mu_1)
Definition: vpMe.h:385
void print()
Definition: vpMe.cpp:404
void setRange(const unsigned int &range)
Definition: vpMe.h:415
void setLikelihoodThresholdType(const vpLikelihoodThresholdType likelihood_threshold_type)
Definition: vpMe.h:505
void setMaskNumber(const unsigned int &mask_number)
Definition: vpMe.cpp:552
void setThreshold(const double &threshold)
Definition: vpMe.h:466
void setSampleStep(const double &sample_step)
Definition: vpMe.h:422
void setMaskSize(const unsigned int &mask_size)
Definition: vpMe.cpp:560
void setMu2(const double &mu_2)
Definition: vpMe.h:392
@ NORMALIZED_THRESHOLD
Definition: vpMe.h:145
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)