1 #include <visp3/gui/vpDisplayOpenCV.h>
3 #include <visp3/io/vpVideoReader.h>
4 #include <visp3/io/vpImageIo.h>
6 #include <visp3/vision/vpKeyPoint.h>
11 #if (VISP_HAVE_OPENCV_VERSION >= 0x020101)
20 const std::string detectorName =
"ORB";
21 const std::string extractorName =
"ORB";
23 const std::string matcherName =
"BruteForce-Hamming";
25 vpKeyPoint keypoint(detectorName, extractorName, matcherName, filterType);
26 std::cout <<
"Reference keypoints=" << keypoint.buildReference(I) << std::endl;
36 vpDisplayOpenCV d(Idisp, 0, 0,
"Matching keypoints with ORB keypoints") ;
41 while ( ! reader.
end() )
54 unsigned int nbMatch = keypoint.matchPoint(I);
57 std::cout <<
"Matches=" << nbMatch << std::endl;
61 for (
unsigned int i = 0; i < nbMatch; i++)
63 keypoint.getMatchedPoints(i, iPref, iPcur);
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
unsigned int getWidth() const
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
static const vpColor green
static void flush(const vpImage< unsigned char > &I)
static void display(const vpImage< unsigned char > &I)
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
void acquire(vpImage< vpRGBa > &I)
void resize(const unsigned int h, const unsigned int w)
resize the image : Image initialization
void setFileName(const char *filename)
Class that allows keypoints detection (and descriptors extraction) and matching thanks to OpenCV libr...
void insert(const vpImage< Type > &src, const vpImagePoint topLeft)
unsigned int getHeight() const
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
static void displayLine(const vpImage< unsigned char > &I, const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color, unsigned int thickness=1)
static const vpColor white