2#include <visp3/core/vpConfig.h>
3#include <visp3/core/vpIoTools.h>
4#include <visp3/gui/vpDisplayFactory.h>
5#include <visp3/io/vpImageIo.h>
6#include <visp3/io/vpVideoReader.h>
7#include <visp3/mbt/vpMbEdgeKltTracker.h>
9int main(
int argc,
char **argv)
11#if defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_VIDEO)
12#ifdef ENABLE_VISP_NAMESPACE
16#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
17 std::shared_ptr<vpDisplay> display;
23 std::string videoname =
"teabox.mp4";
25 for (
int i = 1;
i < argc;
i++) {
26 if (std::string(argv[i]) ==
"--name" && i + 1 < argc) {
27 videoname = std::string(argv[++i]);
29 else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
30 std::cout <<
"\nUsage: " << argv[0] <<
" [--name <video name>] [--help] [-h]\n" << std::endl;
37 if (!parentname.empty())
38 objectname = parentname +
"/" + objectname;
40 std::cout <<
"Video name: " << videoname << std::endl;
41 std::cout <<
"Tracker requested config files: " << objectname <<
".[init,"
43 <<
"cao or wrl]" << std::endl;
44 std::cout <<
"Tracker optional config files: " << objectname <<
".[ppm]" << std::endl;
54#if defined(VISP_HAVE_DISPLAY)
55#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
61 std::cout <<
"No image viewer is available..." << std::endl;
66#if defined(VISP_HAVE_PUGIXML)
68 tracker.loadConfigFile(objectname +
".xml");
91 tracker.setKltOpencv(klt_settings);
93 cam.initPersProjWithoutDistortion(839, 839, 325, 243);
94 tracker.setCameraParameters(cam);
97 tracker.setNearClippingDistance(0.1);
98 tracker.setFarClippingDistance(100.0);
101 tracker.setOgreVisibilityTest(
true);
102 tracker.setOgreShowConfigDialog(
false);
103 tracker.loadModel(objectname +
".cao");
104 tracker.setDisplayFeatures(
true);
105 tracker.initClick(I, objectname +
".init",
true);
112 tracker.getCameraParameters(cam);
124 std::cout <<
"Catch a ViSP exception: " <<
e << std::endl;
127 catch (Ogre::Exception &e) {
128 std::cout <<
"Catch an Ogre exception: " <<
e.getDescription() << std::endl;
131#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
132 if (display !=
nullptr) {
139 std::cout <<
"Install OpenCV and rebuild ViSP to use this example." << std::endl;
Generic class defining intrinsic camera parameters.
static const vpColor none
Class that defines generic functionalities for display.
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.
Definition of the vpImage class member functions.
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)
Hybrid tracker based on moving-edges and keypoints tracked using KLT tracker.
void setMu1(const double &mu_1)
void setRange(const unsigned int &range)
void setLikelihoodThresholdType(const vpLikelihoodThresholdType likelihood_threshold_type)
void setMaskNumber(const unsigned int &mask_number)
void setThreshold(const double &threshold)
void setSampleStep(const double &sample_step)
void setMaskSize(const unsigned int &mask_size)
void setMu2(const double &mu_2)
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.