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/vpMbEdgeTracker.h> 9 #include <visp3/vision/vpKeyPoint.h> 11 int main(
int argc,
char **argv)
13 #if (VISP_HAVE_OPENCV_VERSION >= 0x020400) 16 std::string videoname =
"teabox.mpg";
18 for (
int i = 0; i < argc; i++) {
19 if (std::string(argv[i]) ==
"--name")
20 videoname = std::string(argv[i + 1]);
21 else if (std::string(argv[i]) ==
"--help") {
22 std::cout <<
"\nUsage: " << argv[0] <<
" [--name <video name>] [--help]\n" << std::endl;
29 if (!parentname.empty())
30 objectname = parentname +
"/" + objectname;
32 std::cout <<
"Video name: " << videoname << std::endl;
33 std::cout <<
"Tracker requested config files: " << objectname <<
".[init," 37 <<
"cao or wrl]" << std::endl;
38 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(VISP_HAVE_OPENCV) 55 std::cout <<
"No image viewer is available..." << std::endl;
59 display.
init(I, 100, 100,
"Model-based edge tracker");
96 tracker.
initClick(I, objectname +
".init",
true);
101 #if (defined(VISP_HAVE_OPENCV_NONFREE) || defined(VISP_HAVE_OPENCV_XFEATURES2D)) 102 std::string detectorName =
"SIFT";
103 std::string extractorName =
"SIFT";
104 std::string matcherName =
"BruteForce";
105 std::string configurationFile =
"detection-config-SIFT.xml";
107 std::string detectorName =
"FAST";
108 std::string extractorName =
"ORB";
109 std::string matcherName =
"BruteForce-Hamming";
110 std::string configurationFile =
"detection-config.xml";
119 #ifdef VISP_HAVE_XML2 132 std::vector<cv::KeyPoint> trainKeyPoints;
134 keypoint_learning.
detect(I, trainKeyPoints, elapsedTime);
138 std::vector<vpPolygon> polygons;
139 std::vector<std::vector<vpPoint> > roisPt;
140 std::pair<std::vector<vpPolygon>, std::vector<std::vector<vpPoint> > > pair = tracker.
getPolygonFaces(
false);
141 polygons = pair.first;
142 roisPt = pair.second;
144 std::vector<cv::Point3f> points3f;
159 for (std::vector<cv::KeyPoint>::const_iterator it = trainKeyPoints.begin(); it != trainKeyPoints.end(); ++it) {
171 #ifdef VISP_HAVE_XML2 193 bool click_done =
false;
202 if (keypoint_detection.
matchPoint(I, cam, cMo, error, elapsedTime)) {
223 #ifdef VISP_HAVE_XML2 226 #if defined(VISP_HAVE_COIN3D) && (COIN_MAJOR_VERSION >= 2) 230 std::cout <<
"Catch an exception: " << e << std::endl;
235 std::cout <<
"Install OpenCV and rebuild ViSP to use this example." << std::endl;
virtual void setDisplayFeatures(const bool displayF)
void setRansacIteration(const int nbIter)
void setMovingEdge(const vpMe &me)
void setUseRansacVVS(const bool ransacVVS)
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
virtual unsigned int getClipping() const
virtual void setAngleDisappear(const double &a)
Implementation of an homogeneous matrix and operations on such kind of matrices.
void track(const vpImage< unsigned char > &I)
void setMaskNumber(const unsigned int &a)
void setRansacThreshold(const double threshold)
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 setSampleStep(const double &s)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
void setNbTotalSample(const int &nb)
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
error that can be emited by ViSP classes.
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="")
Make the complete tracking of an object by using its CAD model.
virtual void setPose(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cdMo)
virtual void setCameraParameters(const vpCameraParameters &camera)
void loadConfigFile(const std::string &configFile)
static void flush(const vpImage< unsigned char > &I)
void setMu1(const double &mu_1)
void initPersProjWithoutDistortion(const double px, const double py, const double u0, const double v0)
virtual void setNearClippingDistance(const double &dist)
virtual void setOgreVisibilityTest(const bool &v)
void setMatcher(const std::string &matcherName)
void open(vpImage< vpRGBa > &I)
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=NULL)
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.
void setDetector(const vpFeatureDetectorType &detectorType)
void acquire(vpImage< vpRGBa > &I)
unsigned int buildReference(const vpImage< unsigned char > &I)
virtual void setFarClippingDistance(const double &dist)
void setFileName(const char *filename)
virtual void setAngleAppear(const double &a)
static double rad(double deg)
unsigned int matchPoint(const vpImage< unsigned char > &I)
void setRansacConsensusPercentage(const double percentage)
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
void setMu2(const double &mu_2)
void loadLearningData(const std::string &filename, const bool binaryMode=false, const bool append=false)
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))
Class that allows keypoints detection (and descriptors extraction) and matching thanks to OpenCV libr...
void saveLearningData(const std::string &filename, const bool binaryMode=false, const bool saveTrainingImages=true)
virtual void getPose(vpHomogeneousMatrix &cMo_) const
void setThreshold(const double &t)
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)
virtual void initClick(const vpImage< unsigned char > &I, const std::string &initFile, const bool displayHelp=false, const vpHomogeneousMatrix &T=vpHomogeneousMatrix())
void setUseRansacConsensusPercentage(const bool usePercentage)
void loadConfigFile(const std::string &configFile)
void setFilterMatchingType(const vpFilterMatchingType &filterType)
void setRange(const unsigned int &r)
virtual void setClipping(const unsigned int &flags)
void setExtractor(const vpFeatureDescriptorType &extractorType)
void setMatchingRatioThreshold(const double ratio)
virtual std::pair< std::vector< vpPolygon >, std::vector< std::vector< vpPoint > > > getPolygonFaces(const bool orderPolygons=true, const bool useVisibility=true, const bool clipPolygon=false)
void detect(const vpImage< unsigned char > &I, std::vector< cv::KeyPoint > &keyPoints, const vpRect &rectangle=vpRect())