1 #include <visp3/core/vpConfig.h>
3 #include <visp3/core/vpIoTools.h>
4 #include <visp3/gui/vpDisplayFactory.h>
5 #include <visp3/io/vpVideoReader.h>
6 #include <visp3/mbt/vpMbEdgeTracker.h>
7 #include <visp3/vision/vpKeyPoint.h>
9 int main(
int argc,
char **argv)
11 #if defined(HAVE_OPENCV_IMGPROC) && defined(VISP_HAVE_DISPLAY) && \
12 (((VISP_HAVE_OPENCV_VERSION < 0x050000) && defined(HAVE_OPENCV_CALIB3D) && (defined(HAVE_OPENCV_FEATURES2D) || defined(HAVE_OPENCV_XFEATURES2D))) || \
13 ((VISP_HAVE_OPENCV_VERSION >= 0x050000) && defined(HAVE_OPENCV_3D) && defined(HAVE_OPENCV_FEATURES)))
15 #ifdef ENABLE_VISP_NAMESPACE
19 #if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
20 std::shared_ptr<vpDisplay> display;
25 std::string videoname =
"teabox.mp4";
27 for (
int i = 1; i < argc; i++) {
28 if (std::string(argv[i]) ==
"--name" && i + 1 < argc) {
29 videoname = std::string(argv[++i]);
31 else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
32 std::cout <<
"\nUsage: " << argv[0]
33 <<
" [--name <video name>]"
34 <<
"[--help] [-h]\n" << std::endl;
41 if (!parentname.empty())
42 objectname = parentname +
"/" + objectname;
44 std::cout <<
"Video name: " << videoname << std::endl;
45 std::cout <<
"Tracker requested config files: " << objectname <<
".[init,"
47 <<
"cao or wrl]" << std::endl;
48 std::cout <<
"Tracker optional config files: " << objectname <<
".[ppm]" << std::endl;
58 #if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
66 #if defined(VISP_HAVE_PUGIXML)
100 tracker.initClick(I, objectname +
".init",
true);
105 #if ((VISP_HAVE_OPENCV_VERSION < 0x050000) && defined(HAVE_OPENCV_XFEATURES2D)) || ((VISP_HAVE_OPENCV_VERSION >= 0x050000) && defined(HAVE_OPENCV_FEATURES))
106 std::string detectorName =
"SIFT";
107 std::string extractorName =
"SIFT";
108 std::string matcherName =
"BruteForce";
109 std::string configurationFile =
"detection-config-SIFT.xml";
110 #elif ((VISP_HAVE_OPENCV_VERSION < 0x050000) && defined(HAVE_OPENCV_FEATURES2D)) || ((VISP_HAVE_OPENCV_VERSION >= 0x050000) && defined(HAVE_OPENCV_FEATURES))
111 std::string detectorName =
"FAST";
112 std::string extractorName =
"ORB";
113 std::string matcherName =
"BruteForce-Hamming";
114 std::string configurationFile =
"detection-config.xml";
135 std::vector<cv::KeyPoint> trainKeyPoints;
137 keypoint_learning.
detect(I, trainKeyPoints, elapsedTime);
141 std::vector<vpPolygon> polygons;
142 std::vector<std::vector<vpPoint> > roisPt;
143 std::pair<std::vector<vpPolygon>, std::vector<std::vector<vpPoint> > > pair = tracker.
getPolygonFaces(
false);
144 polygons = pair.first;
145 roisPt = pair.second;
147 std::vector<cv::Point3f> points3f;
162 for (std::vector<cv::KeyPoint>::const_iterator it = trainKeyPoints.begin(); it != trainKeyPoints.end(); ++it) {
195 bool click_done =
false;
204 if (keypoint_detection.
matchPoint(I, cam, cMo, error, elapsedTime)) {
227 std::cout <<
"Catch an exception: " << e << std::endl;
230 #if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
231 if (display !=
nullptr) {
238 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
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 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 2D features detection (and descriptors extraction) and matching thanks to...
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)
Make the complete tracking of an object by using its CAD model.
virtual void setNearClippingDistance(const double &dist) VP_OVERRIDE
virtual void track(const vpImage< unsigned char > &I) VP_OVERRIDE
virtual void display(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, const vpColor &col, unsigned int thickness=1, bool displayFullModel=false) VP_OVERRIDE
virtual void setFarClippingDistance(const double &dist) VP_OVERRIDE
virtual void setOgreVisibilityTest(const bool &v) VP_OVERRIDE
virtual void setClipping(const unsigned int &flags) VP_OVERRIDE
void setMovingEdge(const vpMe &me)
virtual void setCameraParameters(const vpCameraParameters &cam) VP_OVERRIDE
virtual void setPose(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cdMo) VP_OVERRIDE
virtual void loadConfigFile(const std::string &configFile, bool verbose=true) VP_OVERRIDE
virtual void getCameraParameters(vpCameraParameters &cam) const
virtual void setDisplayFeatures(bool displayF)
virtual void getPose(vpHomogeneousMatrix &cMo) const
virtual void setAngleDisappear(const double &a)
virtual void loadModel(const std::string &modelFile, bool verbose=false, const vpHomogeneousMatrix &T=vpHomogeneousMatrix())
virtual void setAngleAppear(const double &a)
virtual std::pair< std::vector< vpPolygon >, std::vector< std::vector< vpPoint > > > getPolygonFaces(bool orderPolygons=true, bool useVisibility=true, bool clipPolygon=false)
virtual unsigned int getClipping() const
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)
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.