1 #include <visp3/core/vpPixelMeterConversion.h> 3 #include <visp3/gui/vpDisplayOpenCV.h> 4 #include <visp3/io/vpVideoReader.h> 5 #include <visp3/vision/vpHomography.h> 6 #include <visp3/vision/vpKeyPoint.h> 8 int main(
int argc,
const char **argv)
10 #if (VISP_HAVE_OPENCV_VERSION >= 0x020101) 15 method = atoi(argv[1]);
18 std::cout <<
"Uses Ransac to estimate the homography" << std::endl;
20 std::cout <<
"Uses a robust scheme to estimate the homography" << std::endl;
29 const std::string detectorName =
"ORB";
30 const std::string extractorName =
"ORB";
32 const std::string matcherName =
"BruteForce-Hamming";
34 vpKeyPoint keypoint(detectorName, extractorName, matcherName, filterType);
35 keypoint.buildReference(I);
48 corner_ref[0].
set_ij(115, 64);
49 corner_ref[1].
set_ij(83, 253);
50 corner_ref[2].
set_ij(282, 307);
51 corner_ref[3].
set_ij(330, 72);
54 for (
unsigned int i = 0; i < 4; i++) {
66 while (!reader.
end()) {
74 unsigned int nbMatch = keypoint.matchPoint(I);
75 std::cout <<
"Nb matches: " << nbMatch << std::endl;
78 std::vector<vpImagePoint> iPref(nbMatch),
81 std::vector<double> mPref_x(nbMatch), mPref_y(nbMatch);
82 std::vector<double> mPcur_x(nbMatch), mPcur_y(nbMatch);
83 std::vector<bool> inliers(nbMatch);
86 for (
unsigned int i = 0; i < nbMatch; i++) {
87 keypoint.getMatchedPoints(i, iPref[i], iPcur[i]);
99 (
unsigned int)(mPref_x.size() * 0.25), 2.0 / cam.
get_px(),
true);
101 vpHomography::robust(mPref_x, mPref_y, mPcur_x, mPcur_y, curHref, inliers, residual, 0.4, 4,
true);
103 std::cout <<
"Cannot compute homography from matches..." << std::endl;
110 for (
int i = 0; i < 4; i++) {
117 for (
int i = 0; i < 4; i++) {
123 for (
unsigned int i = 0; i < nbMatch; i++) {
124 if (inliers[i] ==
true)
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static vpImagePoint project(const vpCameraParameters &cam, const vpHomography &bHa, const vpImagePoint &iPa)
unsigned int getWidth() const
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
static void convertPoint(const vpCameraParameters &cam, const double &u, const double &v, double &x, double &y)
static const vpColor green
static void flush(const vpImage< unsigned char > &I)
Implementation of an homography and operations on homographies.
static void display(const vpImage< unsigned char > &I)
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
Generic class defining intrinsic camera parameters.
static bool ransac(const std::vector< double > &xb, const std::vector< double > &yb, const std::vector< double > &xa, const std::vector< double > &ya, vpHomography &aHb, std::vector< bool > &inliers, double &residual, unsigned int nbInliersConsensus, double threshold, bool normalization=true)
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)
void insert(const vpImage< Type > &src, const vpImagePoint &topLeft)
static void robust(const std::vector< double > &xb, const std::vector< double > &yb, const std::vector< double > &xa, const std::vector< double > &ya, vpHomography &aHb, std::vector< bool > &inlier, double &residual, double weights_threshold=0.4, unsigned int niter=4, bool normalization=true)
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
Class that allows keypoints detection (and descriptors extraction) and matching thanks to OpenCV libr...
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
void set_ij(const double ii, const double jj)
static const vpColor blue