Visual Servoing Platform  version 3.1.0
tutorial-mb-generic-tracker-stereo.cpp
1 #include <cstdlib>
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>
13 
14 int main(int argc, char **argv)
15 {
16 #if defined(VISP_HAVE_OPENCV) && (VISP_HAVE_OPENCV_VERSION >= 0x020300)
17  try {
18  std::string opt_videoname_left = "teabox_left.mpg";
19  std::string opt_videoname_right = "teabox_right.mpg";
20  int opt_tracker1 = vpMbGenericTracker::EDGE_TRACKER;
21  int opt_tracker2 = vpMbGenericTracker::EDGE_TRACKER;
22 
23  for (int i = 0; i < argc; i++) {
24  if (std::string(argv[i]) == "--name" && i + 2 < argc) {
25  opt_videoname_left = std::string(argv[i + 1]);
26  opt_videoname_right = std::string(argv[i + 2]);
27  } else if (std::string(argv[i]) == "--tracker" && i + 2 < argc) {
28  opt_tracker1 = atoi(argv[i + 1]);
29  opt_tracker2 = atoi(argv[i + 2]);
30  } else if (std::string(argv[i]) == "--help") {
31  std::cout << "\nUsage: " << argv[0]
32  << " [--name <video name left> <video name right>]"
33  " [--tracker <1=egde|2=klt|3=hybrid> <1=egde|2=klt|3=hybrid>]"
34  " [--help]\n"
35  << std::endl;
36  return EXIT_SUCCESS;
37  }
38  }
39 
40  if ((opt_tracker1 < 1 || opt_tracker1 > 3) && (opt_tracker2 < 1 || opt_tracker2 > 3)) {
41  std::cerr << "Wrong tracker type. Correct values are: "
42  "1=egde|2=keypoint|3=hybrid."
43  << std::endl;
44  return EXIT_SUCCESS;
45  }
46 
47  std::string parentname = vpIoTools::getParent(opt_videoname_left);
48  std::string objectname_left = vpIoTools::getNameWE(opt_videoname_left);
49  std::string objectname_right = vpIoTools::getNameWE(opt_videoname_right);
50 
51  if (!parentname.empty()) {
52  objectname_left = parentname + "/" + objectname_left;
53  }
54 
55  std::cout << "Video name: " << opt_videoname_left << " ; " << opt_videoname_right << std::endl;
56  std::cout << "Tracker requested config files: " << objectname_left << ".[init, cao]"
57  << " and " << objectname_right << ".[init, cao]" << std::endl;
58  std::cout << "Tracker optional config files: " << opt_videoname_left << ".ppm"
59  << " and " << opt_videoname_right << ".ppm" << std::endl;
60 
62  vpImage<unsigned char> I_left, I_right;
64 
65  vpVideoReader g_left, g_right;
66  g_left.setFileName(opt_videoname_left);
67  g_left.open(I_left);
68  g_right.setFileName(opt_videoname_right);
69  g_right.open(I_right);
70 
71 #if defined(VISP_HAVE_X11)
72  vpDisplayX display_left;
73  vpDisplayX display_right;
74 #elif defined(VISP_HAVE_GDI)
75  vpDisplayGDI display_left;
76  vpDisplayGDI display_right;
77 #else
78  vpDisplayOpenCV display_left;
79  vpDisplayOpenCV display_right;
80 #endif
83  display_left.init(I_left, 100, 100, "Model-based tracker (Left)");
84  display_right.init(I_right, 110 + (int)I_left.getWidth(), 100, "Model-based tracker (Right)");
85 
87  std::vector<int> trackerTypes(2);
88  trackerTypes[0] = opt_tracker1;
89  trackerTypes[1] = opt_tracker2;
90  vpMbGenericTracker tracker(trackerTypes);
91 
92 #if !defined(VISP_HAVE_MODULE_KLT)
93  if (opt_tracker >= 2) {
94  std::cout << "klt and hybrid model-based tracker are not available "
95  "since visp_klt module is missing"
96  << std::endl;
97  return EXIT_SUCCESS;
98  }
99 #endif
100 
103  tracker.loadConfigFile(objectname_left + ".xml", objectname_right + ".xml");
105 
107  tracker.loadModel(objectname_left + ".cao", objectname_right + ".cao");
110  tracker.setDisplayFeatures(true);
112 
114  vpHomogeneousMatrix cRightMcLeft;
115  std::ifstream file_cRightMcLeft("cRightMcLeft.txt");
116  cRightMcLeft.load(file_cRightMcLeft);
117 
118  std::map<std::string, vpHomogeneousMatrix> mapOfCameraTransformationMatrix;
119  mapOfCameraTransformationMatrix["Camera1"] = vpHomogeneousMatrix();
120  mapOfCameraTransformationMatrix["Camera2"] = cRightMcLeft;
121 
122  tracker.setCameraTransformationMatrix(mapOfCameraTransformationMatrix);
124 
125 #ifndef VISP_HAVE_XML2
126  std::cout << "\n**********************************************************\n"
127  << "Warning: we are not able to load the tracker settings from\n"
128  << "the xml config files since ViSP is not build with libxml2\n"
129  << "3rd party. As a consequence, the tracking may fail!"
130  << "\n**********************************************************\n"
131  << std::endl;
132 #endif
133 
135  tracker.initClick(I_left, I_right, objectname_left + ".init", objectname_right + ".init", true);
137 
138  while (!g_left.end() && !g_right.end()) {
139  g_left.acquire(I_left);
140  g_right.acquire(I_right);
141 
142  vpDisplay::display(I_left);
143  vpDisplay::display(I_right);
144 
146  tracker.track(I_left, I_right);
148 
150  vpHomogeneousMatrix cLeftMo, cRightMo;
151  tracker.getPose(cLeftMo, cRightMo);
153 
155  vpCameraParameters cam_left, cam_right;
156  tracker.getCameraParameters(cam_left, cam_right);
157  tracker.display(I_left, I_right, cLeftMo, cRightMo, cam_left, cam_right, vpColor::red, 2);
159 
160  vpDisplay::displayFrame(I_left, cLeftMo, cam_left, 0.025, vpColor::none, 3);
161  vpDisplay::displayFrame(I_right, cRightMo, cam_right, 0.025, vpColor::none, 3);
162  vpDisplay::displayText(I_left, 10, 10, "A click to exit...", vpColor::red);
163 
164  vpDisplay::flush(I_left);
165  vpDisplay::flush(I_right);
166 
167  if (vpDisplay::getClick(I_left, false)) {
168  break;
169  }
170  }
171  vpDisplay::getClick(I_left);
172  } catch (const vpException &e) {
173  std::cerr << "Catch a ViSP exception: " << e.what() << std::endl;
174  }
175 #else
176  (void)argc;
177  (void)argv;
178  std::cout << "Install OpenCV and rebuild ViSP to use this example." << std::endl;
179 #endif
180 }
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
Implementation of an homogeneous matrix and operations on such kind of matrices.
virtual void setDownScalingFactor(unsigned int scale)
Definition: vpDisplay.cpp:232
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:129
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
Definition: vpDisplayX.h:151
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
static const vpColor none
Definition: vpColor.h:192
error that can be emited by ViSP classes.
Definition: vpException.h:71
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="")
static std::string getParent(const std::string &pathname)
Definition: vpIoTools.cpp:1371
static void flush(const vpImage< unsigned char > &I)
void load(std::ifstream &f)
static const vpColor red
Definition: vpColor.h:180
void open(vpImage< vpRGBa > &I)
static void display(const vpImage< unsigned char > &I)
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
Generic class defining intrinsic camera parameters.
void acquire(vpImage< vpRGBa > &I)
void setFileName(const char *filename)
const char * what() const
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))
static std::string getNameWE(const std::string &pathname)
Definition: vpIoTools.cpp:1358
unsigned int getWidth() const
Definition: vpImage.h:229