2 #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>
8 #include <visp3/io/vpVideoReader.h>
9 #include <visp3/mbt/vpMbKltTracker.h>
11 int main(
int argc,
char **argv)
13 #if defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_VIDEO)
14 #ifdef ENABLE_VISP_NAMESPACE
19 std::string videoname =
"teabox.mp4";
21 for (
int i = 0; i < argc; i++) {
22 if (std::string(argv[i]) ==
"--name")
23 videoname = std::string(argv[i + 1]);
24 else if (std::string(argv[i]) ==
"--help") {
25 std::cout <<
"\nUsage: " << argv[0] <<
" [--name <video name>] [--help]\n" << std::endl;
32 if (!parentname.empty())
33 objectname = parentname +
"/" + objectname;
35 std::cout <<
"Video name: " << videoname << std::endl;
36 std::cout <<
"Tracker requested config files: " << objectname <<
".[init,"
38 <<
"cao or wrl]" << std::endl;
39 std::cout <<
"Tracker optional config files: " << objectname <<
".[ppm]" << std::endl;
48 #if defined(VISP_HAVE_X11)
50 #elif defined(VISP_HAVE_GDI)
52 #elif defined(HAVE_OPENCV_HIGHGUI)
55 std::cout <<
"No image viewer is available..." << std::endl;
59 display.init(I, 100, 100,
"Model-based keypoint tracker");
61 vpMbKltTracker tracker;
64 #if defined(VISP_HAVE_PUGIXML)
66 tracker.loadConfigFile(objectname +
".xml");
81 tracker.setKltOpencv(klt_settings);
82 tracker.setKltMaskBorder(5);
84 tracker.setCameraParameters(cam);
87 tracker.setNearClippingDistance(0.1);
88 tracker.setFarClippingDistance(100.0);
92 tracker.setOgreVisibilityTest(
true);
93 tracker.setOgreShowConfigDialog(
false);
94 tracker.loadModel(objectname +
"-triangle.cao");
95 tracker.setDisplayFeatures(
true);
96 tracker.initClick(I, objectname +
".init",
true);
102 tracker.getPose(cMo);
103 tracker.getCameraParameters(cam);
115 std::cout <<
"Catch a ViSP exception: " << e << std::endl;
117 #ifdef VISP_HAVE_OGRE
118 catch (Ogre::Exception &e) {
119 std::cout <<
"Catch an Ogre exception: " << e.getDescription() << std::endl;
125 std::cout <<
"Install OpenCV and rebuild ViSP to use this example." << std::endl;
Generic class defining intrinsic camera parameters.
void initPersProjWithoutDistortion(double px, double py, double u0, double v0)
static const vpColor none
Display for windows using GDI (available on any windows 32 platform).
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
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.
Implementation of an homogeneous matrix and operations on such kind of matrices.
Wrapper for the KLT (Kanade-Lucas-Tomasi) feature tracker implemented in OpenCV. Thus to enable this ...
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)
static double rad(double deg)
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)