Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
tutorial-mb-generic-tracker-stereo-mono.cpp
1
2#include <cstdlib>
3#include <visp3/core/vpConfig.h>
4#include <visp3/core/vpIoTools.h>
5#include <visp3/gui/vpDisplayFactory.h>
6#include <visp3/io/vpImageIo.h>
8#include <visp3/mbt/vpMbGenericTracker.h>
10#include <visp3/io/vpVideoReader.h>
11
12int main(int argc, char **argv)
13{
14#if defined(VISP_HAVE_OPENCV)
15#ifdef ENABLE_VISP_NAMESPACE
16 using namespace VISP_NAMESPACE_NAME;
17#endif
18
19#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
20 std::shared_ptr<vpDisplay> display;
21#else
22 vpDisplay *display = nullptr;
23#endif
24
25 try {
26 std::string opt_videoname = "teabox.mp4";
27 int opt_tracker = vpMbGenericTracker::EDGE_TRACKER;
28
29 for (int i = 1; i < argc; i++) {
30 if (std::string(argv[i]) == "--name" && i + 1 < argc) {
31 opt_videoname = std::string(argv[++i]);
32 }
33 else if (std::string(argv[i]) == "--tracker" && i + 1 < argc) {
34 opt_tracker = atoi(argv[++i]);
35 }
36 else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
37 std::cout << "\nUsage: " << argv[0]
38 << " [--name <video name>]"
39 << " [--tracker <1=egde|2=keypoint|3=hybrid>]"
40 << " [--help] [-h]\n"
41 << std::endl;
42 return EXIT_SUCCESS;
43 }
44 }
45
46 if (opt_tracker < 1 || opt_tracker > 3) {
47 std::cerr << "Wrong tracker type. Correct values are: "
48 "1=egde|2=keypoint|3=hybrid."
49 << std::endl;
50 return EXIT_SUCCESS;
51 }
52
53 std::string parentname = vpIoTools::getParent(opt_videoname);
54 std::string objectname = vpIoTools::getNameWE(opt_videoname);
55
56 if (!parentname.empty()) {
57 objectname = parentname + "/" + objectname;
58 }
59
60 std::cout << "Video name: " << opt_videoname << std::endl;
61 std::cout << "Tracker requested config files: " << objectname << ".[init, cao]" << std::endl;
62 std::cout << "Tracker optional config files: " << objectname << ".[ppm]" << std::endl;
63
67
69 g.setFileName(opt_videoname);
70 g.open(I);
71
73 vpMbGenericTracker tracker(1, opt_tracker);
75
76#if !defined(VISP_HAVE_MODULE_KLT)
77 if (opt_tracker >= 2) {
78 std::cout << "KLT and hybrid model-based tracker are not available since visp_klt module is missing"
79 << std::endl;
80 return EXIT_SUCCESS;
81 }
82#endif
83
85
86#if defined(VISP_HAVE_PUGIXML)
88 tracker.loadConfigFile(objectname + ".xml");
90#else
91 // Corresponding parameters manually set to have an example code
92 if (opt_tracker == 1 || opt_tracker == 3) {
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 }
104
105#if defined(VISP_HAVE_MODULE_KLT) && defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_VIDEO)
106 if (opt_tracker == 2 || opt_tracker == 3) {
107 vpKltOpencv klt_settings;
108 tracker.setKltMaskBorder(5);
109 klt_settings.setMaxFeatures(300);
110 klt_settings.setWindowSize(5);
111 klt_settings.setQuality(0.015);
112 klt_settings.setMinDistance(8);
113 klt_settings.setHarrisFreeParameter(0.01);
114 klt_settings.setBlockSize(3);
115 klt_settings.setPyramidLevels(3);
116 tracker.setKltOpencv(klt_settings);
117 }
118#endif
119
120 {
123 cam.initPersProjWithoutDistortion(839.21470, 839.44555, 325.66776, 243.69727);
124 tracker.setCameraParameters(cam);
126 }
127#endif
129
130#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
131 display = vpDisplayFactory::createDisplay(I, 100, 100, "Model-based tracker");
132#else
133 display = vpDisplayFactory::allocateDisplay(I, 100, 100, "Model-based tracker");
134#endif
135
137 tracker.loadModel(objectname + ".cao");
140 tracker.setDisplayFeatures(true);
143 tracker.initClick(I, objectname + ".init", true);
145
146 while (!g.end()) {
147 g.acquire(I);
150 tracker.track(I);
154 tracker.getPose(cMo);
158 tracker.getCameraParameters(cam);
159 tracker.display(I, cMo, cam, vpColor::red, 2);
161 vpDisplay::displayFrame(I, cMo, cam, 0.025, vpColor::none, 3);
162 vpDisplay::displayText(I, 10, 10, "A click to exit...", vpColor::red);
164
165 if (vpDisplay::getClick(I, false)) {
166 break;
167 }
168 }
170 }
171 catch (const vpException &e) {
172 std::cerr << "Catch a ViSP exception: " << e.what() << std::endl;
173 }
174
175#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
176 if (display != nullptr) {
177 delete display;
178 }
179#endif
180
181 return EXIT_SUCCESS;
182#else
183 (void)argc;
184 (void)argv;
185 std::cout << "Install OpenCV and rebuild ViSP to use this example." << std::endl;
186 return EXIT_SUCCESS;
187#endif
188 }
Generic class defining intrinsic camera parameters.
static const vpColor red
Definition vpColor.h:198
static const vpColor none
Definition vpColor.h:210
Class that defines generic functionalities for display.
Definition vpDisplay.h:171
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.
Definition of the vpImage class member functions.
Definition vpImage.h:131
static std::string getNameWE(const std::string &pathname)
static std::string getParent(const std::string &pathname)
Wrapper for the KLT (Kanade-Lucas-Tomasi) feature tracker implemented in OpenCV. Thus to enable this ...
Definition vpKltOpencv.h:83
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.
Definition vpMe.h:143
void setMu1(const double &mu_1)
Definition vpMe.h:408
void setRange(const unsigned int &range)
Definition vpMe.h:438
void setLikelihoodThresholdType(const vpLikelihoodThresholdType likelihood_threshold_type)
Definition vpMe.h:531
void setMaskNumber(const unsigned int &mask_number)
Definition vpMe.cpp:555
void setThreshold(const double &threshold)
Definition vpMe.h:489
void setSampleStep(const double &sample_step)
Definition vpMe.h:445
void setMaskSize(const unsigned int &mask_size)
Definition vpMe.cpp:563
void setMu2(const double &mu_2)
Definition vpMe.h:415
@ NORMALIZED_THRESHOLD
Definition vpMe.h:154
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
void open(vpImage< vpRGBa > &I) VP_OVERRIDE
void setFileName(const std::string &filename)
void acquire(vpImage< vpRGBa > &I) VP_OVERRIDE
std::shared_ptr< vpDisplay > createDisplay()
Return a smart pointer vpDisplay specialization if a GUI library is available or nullptr otherwise.
vpDisplay * allocateDisplay()
Return a newly allocated vpDisplay specialization if a GUI library is available or nullptr otherwise.