1 #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/vpVideoReader.h>
8 #include <visp3/mbt/vpMbGenericTracker.h>
9 #include <visp3/vision/vpKeyPoint.h>
11 int main(
int argc,
char **argv)
13 #if defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGPROC) && defined(HAVE_OPENCV_FEATURES2D)
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" || std::string(argv[i]) ==
"-h") {
25 std::cout <<
"\nUsage: " << argv[0] <<
" [--name <video name>] [--help] [-h]\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;
49 #if defined(VISP_HAVE_X11)
51 #elif defined(VISP_HAVE_GDI)
53 #elif defined(HAVE_OPENCV_HIGHGUI)
56 std::cout <<
"No image viewer is available..." << std::endl;
60 display.init(I, 100, 100,
"Model-based edge tracker");
64 #if defined(VISP_HAVE_PUGIXML)
66 tracker.loadConfigFile(objectname +
".xml");
67 tracker.getCameraParameters(cam);
82 tracker.setMovingEdge(me);
84 tracker.setCameraParameters(cam);
87 tracker.setNearClippingDistance(0.1);
88 tracker.setFarClippingDistance(100.0);
92 tracker.setOgreVisibilityTest(
false);
94 tracker.loadModel(objectname +
".cao");
96 tracker.loadModel(objectname +
".wrl");
97 tracker.setDisplayFeatures(
true);
98 tracker.initClick(I, objectname +
".init",
true);
103 #if (defined(VISP_HAVE_OPENCV_NONFREE) || defined(VISP_HAVE_OPENCV_XFEATURES2D)) || \
104 (VISP_HAVE_OPENCV_VERSION >= 0x030411 && CV_MAJOR_VERSION < 4) || (VISP_HAVE_OPENCV_VERSION >= 0x040400)
105 std::string detectorName =
"SIFT";
106 std::string extractorName =
"SIFT";
107 std::string matcherName =
"BruteForce";
108 std::string configurationFile =
"detection-config-SIFT.xml";
110 std::string detectorName =
"FAST";
111 std::string extractorName =
"ORB";
112 std::string matcherName =
"BruteForce-Hamming";
113 std::string configurationFile =
"detection-config.xml";
134 std::vector<cv::KeyPoint> trainKeyPoints;
136 keypoint_learning.
detect(I, trainKeyPoints, elapsedTime);
140 std::vector<vpPolygon> polygons;
141 std::vector<std::vector<vpPoint> > roisPt;
142 std::pair<std::vector<vpPolygon>, std::vector<std::vector<vpPoint> > > pair = tracker.getPolygonFaces(
false);
143 polygons = pair.first;
144 roisPt = pair.second;
146 std::vector<cv::Point3f> points3f;
147 tracker.getPose(cMo);
161 for (std::vector<cv::KeyPoint>::const_iterator it = trainKeyPoints.begin(); it != trainKeyPoints.end(); ++it) {
194 bool click_done =
false;
203 if (keypoint_detection.
matchPoint(I, cam, cMo, error, elapsedTime)) {
207 tracker.setPose(I, cMo);
226 std::cout <<
"Catch an exception: " << e << std::endl;
231 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 displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
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.
Class that allows keypoints detection (and descriptors extraction) and matching thanks to OpenCV libr...
unsigned int matchPoint(const vpImage< unsigned char > &I)
void setRansacConsensusPercentage(double percentage)
void setFilterMatchingType(const vpFilterMatchingType &filterType)
void setUseRansacVVS(bool ransacVVS)
void setExtractor(const vpFeatureDescriptorType &extractorType)
void loadLearningData(const std::string &filename, bool binaryMode=false, bool append=false)
void setRansacThreshold(double threshold)
void detect(const vpImage< unsigned char > &I, std::vector< cv::KeyPoint > &keyPoints, const vpRect &rectangle=vpRect())
static void compute3DForPointsInPolygons(const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, std::vector< cv::KeyPoint > &candidates, const std::vector< vpPolygon > &polygons, const std::vector< std::vector< vpPoint > > &roisPt, std::vector< cv::Point3f > &points, cv::Mat *descriptors=nullptr)
void setMatcher(const std::string &matcherName)
void saveLearningData(const std::string &filename, bool binaryMode=false, bool saveTrainingImages=true)
void setUseRansacConsensusPercentage(bool usePercentage)
void setMatchingRatioThreshold(double ratio)
void setDetector(const vpFeatureDetectorType &detectorType)
unsigned int buildReference(const vpImage< unsigned char > &I)
void loadConfigFile(const std::string &configFile)
void setRansacIteration(int nbIter)
static double rad(double deg)
Real-time 6D object pose tracking using its CAD model.
void setMu1(const double &mu_1)
void setRange(const unsigned int &range)
void setLikelihoodThresholdType(const vpLikelihoodThresholdType likelihood_threshold_type)
void setNbTotalSample(const int &ntotal_sample)
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 acquire(vpImage< vpRGBa > &I)
void open(vpImage< vpRGBa > &I)
void setFileName(const std::string &filename)