48 #include <visp3/core/vpConfig.h> 50 #if defined(VISP_BUILD_DEPRECATED_FUNCTIONS) 52 #if defined(VISP_HAVE_MODULE_MBT) && defined(VISP_HAVE_MODULE_KLT) && defined(VISP_HAVE_OPENCV) && \ 53 defined(VISP_HAVE_DISPLAY) && (VISP_HAVE_OPENCV_VERSION >= 0x020100) 55 #include <visp3/core/vpDebug.h> 56 #include <visp3/core/vpHomogeneousMatrix.h> 57 #include <visp3/core/vpIoTools.h> 58 #include <visp3/core/vpMath.h> 59 #include <visp3/gui/vpDisplayD3D.h> 60 #include <visp3/gui/vpDisplayGDI.h> 61 #include <visp3/gui/vpDisplayGTK.h> 62 #include <visp3/gui/vpDisplayOpenCV.h> 63 #include <visp3/gui/vpDisplayX.h> 64 #include <visp3/io/vpImageIo.h> 65 #include <visp3/io/vpParseArgv.h> 66 #include <visp3/io/vpVideoReader.h> 67 #include <visp3/mbt/vpMbEdgeKltMultiTracker.h> 69 #define GETOPTARGS "x:m:i:n:de:chtfColwvp" 71 void usage(
const char *name,
const char *badparam)
74 Example of tracking based on the 3D model.\n\ 77 %s [-i <test image path>] [-x <config file>]\n\ 78 [-m <model name>] [-n <initialisation file base name>] [-e <last frame index>]\n\ 79 [-t] [-c] [-d] [-h] [-f] [-C] [-o] [-w] [-l] [-v] [-p]\n", name);
83 -i <input image path> \n\ 84 Set image input path.\n\ 85 From this path read images \n\ 86 \"mbt/cube/image%%04d.ppm\". These \n\ 87 images come from ViSP-images-x.y.z.tar.gz available \n\ 88 on the ViSP website.\n\ 89 Setting the VISP_INPUT_IMAGE_PATH environment\n\ 90 variable produces the same behavior than using\n\ 94 Set the config file (the xml file) to use.\n\ 95 The config file is used to specify the parameters of the tracker.\n\ 98 Specify the name of the file of the model\n\ 99 The model can either be a vrml model (.wrl) or a .cao file.\n\ 101 -e <last frame index> \n\ 102 Specify the index of the last frame. Once reached, the tracking is stopped\n\ 105 Do not use the vrml model, use the .cao one. These two models are \n\ 106 equivalent and comes from ViSP-images-x.y.z.tar.gz available on the ViSP\n\ 107 website. However, the .cao model allows to use the 3d model based tracker \n\ 111 Track only the cube (not the cylinder). In this case the models files are\n\ 112 cube.cao or cube.wrl instead of cube_and_cylinder.cao and \n\ 113 cube_and_cylinder.wrl.\n\ 115 -n <initialisation file base name> \n\ 116 Base name of the initialisation file. The file will be 'base_name'.init .\n\ 117 This base name is also used for the optional picture specifying where to \n\ 118 click (a .ppm picture).\n\ 121 Turn off the display of the the moving edges and Klt points. \n\ 124 Turn off the display.\n\ 127 Disable the mouse click. Useful to automate the \n\ 128 execution of this program without human intervention.\n\ 131 Use Ogre3D for visibility tests\n\ 134 When Ogre3D is enable [-o] show Ogre3D configuration dialog that allows to set the renderer.\n\ 137 Use the scanline for visibility tests.\n\ 140 Compute covariance matrix.\n\ 143 Compute gradient projection error.\n\ 146 Print the help.\n\n");
149 fprintf(stdout,
"\nERROR: Bad parameter [%s]\n", badparam);
152 bool getOptions(
int argc,
const char **argv, std::string &ipath, std::string &configFile, std::string &modelFile,
153 std::string &initFile,
long &lastFrame,
bool &displayFeatures,
bool &click_allowed,
bool &display,
154 bool &cao3DModel,
bool &trackCylinder,
bool &useOgre,
bool &showOgreConfigDialog,
bool &useScanline,
155 bool &computeCovariance,
bool &projectionError)
163 lastFrame = atol(optarg_);
169 configFile = optarg_;
178 displayFeatures =
false;
184 click_allowed =
false;
190 trackCylinder =
false;
199 showOgreConfigDialog =
true;
202 computeCovariance =
true;
205 projectionError =
true;
208 usage(argv[0], NULL);
213 usage(argv[0], optarg_);
219 if ((c == 1) || (c == -1)) {
221 usage(argv[0], NULL);
222 std::cerr <<
"ERROR: " << std::endl;
223 std::cerr <<
" Bad argument " << optarg_ << std::endl << std::endl;
230 int main(
int argc,
const char **argv)
233 std::string env_ipath;
234 std::string opt_ipath;
236 std::string opt_configFile;
237 std::string configFile;
238 std::string opt_modelFile;
239 std::string modelFile;
240 std::string opt_initFile;
241 std::string initFile;
242 long opt_lastFrame = -1;
243 bool displayFeatures =
true;
244 bool opt_click_allowed =
true;
245 bool opt_display =
true;
246 bool cao3DModel =
false;
247 bool trackCylinder =
true;
248 bool useOgre =
false;
249 bool showOgreConfigDialog =
false;
250 bool useScanline =
false;
251 bool computeCovariance =
false;
252 bool projectionError =
false;
260 if (!env_ipath.empty())
264 if (!getOptions(argc, argv, opt_ipath, opt_configFile, opt_modelFile, opt_initFile, opt_lastFrame, displayFeatures,
265 opt_click_allowed, opt_display, cao3DModel, trackCylinder, useOgre, showOgreConfigDialog,
266 useScanline, computeCovariance, projectionError)) {
271 if (opt_ipath.empty() && env_ipath.empty()) {
272 usage(argv[0], NULL);
273 std::cerr << std::endl <<
"ERROR:" << std::endl;
274 std::cerr <<
" Use -i <visp image path> option or set VISP_INPUT_IMAGE_PATH " << std::endl
275 <<
" environment variable to specify the location of the " << std::endl
276 <<
" image path where test images are located." << std::endl
283 if (!opt_ipath.empty())
288 if (!opt_configFile.empty())
289 configFile = opt_configFile;
290 else if (!opt_ipath.empty())
295 if (!opt_modelFile.empty()) {
296 modelFile = opt_modelFile;
298 std::string modelFileCao;
299 std::string modelFileWrl;
301 modelFileCao =
"mbt/cube_and_cylinder.cao";
302 modelFileWrl =
"mbt/cube_and_cylinder.wrl";
304 modelFileCao =
"mbt/cube.cao";
305 modelFileWrl =
"mbt/cube.wrl";
308 if (!opt_ipath.empty()) {
312 #ifdef VISP_HAVE_COIN3D 315 std::cerr <<
"Coin is not detected in ViSP. Use the .cao model instead." << std::endl;
323 #ifdef VISP_HAVE_COIN3D 326 std::cerr <<
"Coin is not detected in ViSP. Use the .cao model instead." << std::endl;
333 if (!opt_initFile.empty())
334 initFile = opt_initFile;
335 else if (!opt_ipath.empty())
348 std::cout <<
"Cannot open sequence: " << ipath << std::endl;
359 #if defined VISP_HAVE_X11 361 #elif defined VISP_HAVE_GDI 363 #elif defined VISP_HAVE_OPENCV 365 #elif defined VISP_HAVE_D3D9 367 #elif defined VISP_HAVE_GTK 373 #if defined(VISP_HAVE_DISPLAY) 376 display1.
init(I1, 100, 100,
"Test tracking (Left)");
390 #if defined(VISP_HAVE_XML2) 392 tracker.loadConfigFile(configFile, configFile);
416 tracker.setCameraParameters(cam1, cam2);
417 tracker.setMovingEdge(me);
418 tracker.setKltOpencv(klt);
419 tracker.setKltMaskBorder(5);
424 tracker.setNearClippingDistance(0.01);
425 tracker.setFarClippingDistance(0.90);
433 tracker.setDisplayFeatures(displayFeatures);
436 tracker.setOgreVisibilityTest(useOgre);
438 tracker.setOgreShowConfigDialog(showOgreConfigDialog);
441 tracker.setScanLineVisibilityTest(useScanline);
444 tracker.setCovarianceComputation(computeCovariance);
447 tracker.setProjectionErrorComputation(projectionError);
450 tracker.getCameraParameters(cam1, cam2);
453 if (opt_display && opt_click_allowed) {
462 tracker.loadModel(modelFile);
470 if (opt_display && opt_click_allowed) {
471 tracker.initClick(I1, I2, initFile, initFile,
true);
472 tracker.getPose(c1Mo, c2Mo);
474 tracker.display(I1, I2, c1Mo, c2Mo, cam1, cam2,
vpColor::red);
476 vpHomogeneousMatrix c1Moi(0.02044769891, 0.1101505452, 0.5078963719, 2.063603907, 1.110231561, -0.4392789872);
477 vpHomogeneousMatrix c2Moi(0.02044769891, 0.1101505452, 0.5078963719, 2.063603907, 1.110231561, -0.4392789872);
478 tracker.initFromPose(I1, I2, c1Moi, c2Moi);
482 tracker.track(I1, I2);
483 tracker.getPose(c1Mo, c2Mo);
490 while (!reader.
end()) {
502 std::cout <<
"----------Test reset tracker----------" << std::endl;
507 tracker.resetTracker();
508 #if defined(VISP_HAVE_XML2) 509 tracker.loadConfigFile(configFile, configFile);
533 tracker.setCameraParameters(cam1, cam2);
534 tracker.setMovingEdge(me);
535 tracker.setKltOpencv(klt);
536 tracker.setKltMaskBorder(5);
541 tracker.setNearClippingDistance(0.01);
542 tracker.setFarClippingDistance(0.90);
548 tracker.loadModel(modelFile);
549 tracker.setCameraParameters(cam1, cam2);
550 tracker.setOgreVisibilityTest(useOgre);
551 tracker.setScanLineVisibilityTest(useScanline);
552 tracker.setCovarianceComputation(computeCovariance);
553 tracker.setProjectionErrorComputation(projectionError);
554 tracker.initFromPose(I1, I2, c1Mo, c2Mo);
559 c1Mo.
buildFrom(0.0439540832, 0.0845870108, 0.5477322481, 2.179498458, 0.8611798108, -0.3491961946);
560 c2Mo.
buildFrom(0.0439540832, 0.0845870108, 0.5477322481, 2.179498458, 0.8611798108, -0.3491961946);
561 std::cout <<
"Test set pose" << std::endl;
562 tracker.setPose(I1, I2, c1Mo, c2Mo);
568 tracker.track(I1, I2);
569 tracker.getPose(c1Mo, c2Mo);
579 if (opt_click_allowed) {
587 if (computeCovariance) {
588 std::cout <<
"Covariance matrix: \n" << tracker.getCovarianceMatrix() << std::endl << std::endl;
591 if (projectionError) {
592 std::cout <<
"Projection error: " << tracker.getProjectionError() << std::endl << std::endl;
601 std::cout <<
"Reached last frame: " << reader.
getFrameIndex() << std::endl;
603 if (opt_click_allowed && !quit) {
608 #if defined(VISP_HAVE_XML2) 614 #if defined(VISP_HAVE_COIN3D) && (COIN_MAJOR_VERSION >= 2) 623 std::cout <<
"Catch an exception: " << e << std::endl;
631 std::cout <<
"visp_mbt, visp_gui modules and OpenCV are required to run " 640 std::cout <<
"Nothing to run, deprecated example." << std::endl;
643 #endif //#if defined(VISP_BUILD_DEPRECATED_FUNCTIONS) long getFrameIndex() const
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
void setHarrisFreeParameter(double harris_k)
unsigned int getWidth() const
Implementation of an homogeneous matrix and operations on such kind of matrices.
void setMaskNumber(const unsigned int &a)
virtual void setDownScalingFactor(unsigned int scale)
static const vpColor darkRed
Display for windows using GDI (available on any windows 32 platform).
void setMaxFeatures(const int maxCount)
void setSampleStep(const double &s)
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...
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
void setMinDistance(double minDistance)
error that can be emited by ViSP classes.
Hybrid stereo (or more) tracker based on moving-edges and keypoints tracked using KLT tracker...
static void flush(const vpImage< unsigned char > &I)
long getFirstFrameIndex()
void setMu1(const double &mu_1)
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
void setQuality(double qualityLevel)
void initPersProjWithoutDistortion(const double px, const double py, const double u0, const double v0)
void open(vpImage< vpRGBa > &I)
Display for windows using Direct3D 3rd party. Thus to enable this class Direct3D should be installed...
void setMaskSize(const unsigned int &a)
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.
The vpDisplayGTK allows to display image using the GTK 3rd party library. Thus to enable this class G...
void acquire(vpImage< vpRGBa > &I)
void setFileName(const char *filename)
void setPyramidLevels(const int pyrMaxLevel)
void buildFrom(const vpTranslationVector &t, const vpRotationMatrix &R)
static double rad(double deg)
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="")
void setMu2(const double &mu_2)
void setWindowSize(const int winSize)
void setLastFrameIndex(const long last_frame)
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))
unsigned int getDownScalingFactor()
Wrapper for the KLT (Kanade-Lucas-Tomasi) feature tracker implemented in OpenCV. Thus to enable this ...
void setBlockSize(const int blockSize)
void setThreshold(const double &t)
void setRange(const unsigned int &r)