1 #include <visp3/core/vpIoTools.h> 3 #include <visp3/gui/vpDisplayGDI.h> 4 #include <visp3/gui/vpDisplayOpenCV.h> 5 #include <visp3/gui/vpDisplayX.h> 6 #include <visp3/io/vpImageIo.h> 8 #include <visp3/mbt/vpMbEdgeKltTracker.h> 9 #include <visp3/mbt/vpMbEdgeTracker.h> 11 #include <visp3/io/vpVideoReader.h> 13 int main(
int argc,
char **argv)
15 #if defined(VISP_HAVE_OPENCV) && (VISP_HAVE_OPENCV_VERSION >= 0x020100) 18 std::string opt_videoname =
"teabox.mpg";
19 std::string opt_modelname =
"teabox";
22 for (
int i = 0; i < argc; i++) {
23 if (std::string(argv[i]) ==
"--video")
24 opt_videoname = std::string(argv[i + 1]);
25 else if (std::string(argv[i]) ==
"--model")
26 opt_modelname = std::string(argv[i + 1]);
27 else if (std::string(argv[i]) ==
"--tracker")
28 opt_tracker = atoi(argv[i + 1]);
29 else if (std::string(argv[i]) ==
"--help") {
30 std::cout <<
"\nUsage: " << argv[0]
31 <<
" [--video <video name>] [--model <model name>] " 32 "[--tracker <0=egde|1=keypoint|2=hybrid>] [--help]\n" 40 if (!parentname.empty())
41 objectname = parentname +
"/" + objectname;
43 std::cout <<
"Video name: " << opt_videoname << std::endl;
44 std::cout <<
"Tracker requested config files: " << objectname <<
".[init, cao]" << std::endl;
45 std::cout <<
"Tracker optional config files: " << objectname <<
".[ppm]" << std::endl;
60 #if defined(VISP_HAVE_X11) 62 #elif defined(VISP_HAVE_GDI) 67 display->init(I, 100, 100,
"Model-based tracker");
73 #ifdef VISP_HAVE_MODULE_KLT 74 else if (opt_tracker == 1)
80 std::cout <<
"klt and hybrid model-based tracker are not available " 81 "since visp_klt module is missing" 89 if (opt_tracker == 0 || opt_tracker == 2) {
101 #ifdef VISP_HAVE_MODULE_KLT 102 if (opt_tracker == 1 || opt_tracker == 2) {
111 dynamic_cast<vpMbKltTracker *
>(tracker)->setKltOpencv(klt_settings);
129 tracker->
initClick(I, objectname +
".init",
true);
158 std::cout <<
"Catch a ViSP exception: " << e << std::endl;
163 std::cout <<
"Install OpenCV and rebuild ViSP to use this example." << std::endl;
virtual void setDisplayFeatures(const bool displayF)
Class that defines generic functionnalities for display.
virtual void track(const vpImage< unsigned char > &I)=0
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
void setHarrisFreeParameter(double harris_k)
Implementation of an homogeneous matrix and operations on such kind of matrices.
void setMaskNumber(const unsigned int &a)
Display for windows using GDI (available on any windows 32 platform).
virtual void loadModel(const std::string &modelFile, const bool verbose=false, const vpHomogeneousMatrix &T=vpHomogeneousMatrix())
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...
static const vpColor none
void setMinDistance(double minDistance)
error that can be emited by ViSP classes.
Make the complete tracking of an object by using its CAD model.
static void flush(const vpImage< unsigned char > &I)
void setMu1(const double &mu_1)
void setQuality(double qualityLevel)
void initPersProjWithoutDistortion(const double px, const double py, const double u0, const double v0)
void open(vpImage< vpRGBa > &I)
virtual void display(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, const vpColor &col, const unsigned int thickness=1, const bool displayFullModel=false)=0
virtual void setCameraParameters(const vpCameraParameters &camera)
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...
virtual void getCameraParameters(vpCameraParameters &camera) const
Generic class defining intrinsic camera parameters.
Main methods for a model-based tracker.
void acquire(vpImage< vpRGBa > &I)
void setFileName(const char *filename)
Model based tracker using only KLT.
void setPyramidLevels(const int pyrMaxLevel)
Hybrid tracker based on moving-edges and keypoints tracked using KLT tracker.
void setMu2(const double &mu_2)
void setWindowSize(const int winSize)
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))
Wrapper for the KLT (Kanade-Lucas-Tomasi) feature tracker implemented in OpenCV. Thus to enable this ...
virtual void getPose(vpHomogeneousMatrix &cMo_) const
void setBlockSize(const int blockSize)
void setThreshold(const double &t)
virtual void initClick(const vpImage< unsigned char > &I, const std::string &initFile, const bool displayHelp=false, const vpHomogeneousMatrix &T=vpHomogeneousMatrix())
void setRange(const unsigned int &r)