#include <highgui.h>
#include "opencv2/core/core.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "features_2d/features_2d.h"
#include <iostream>
Go to the source code of this file.
Defines | |
#define | DRAW_OUTLIERS_MODE 0 |
#define | DRAW_RICH_KEYPOINTS_MODE 0 |
Functions | |
void | drawMatchesOnly (const cv::Mat &image1, const std::vector< cv::KeyPoint > &keypoints1, const cv::Mat &image2, const std::vector< cv::KeyPoint > &keypoints2, const std::vector< f2d::Match > &matches, cv::Mat &display) |
int | main (int argc, char **argv) |
Variables | |
const string | winName = "correspondences" |
#define DRAW_OUTLIERS_MODE 0 |
Definition at line 13 of file desc_match.cpp.
#define DRAW_RICH_KEYPOINTS_MODE 0 |
Definition at line 12 of file desc_match.cpp.
void drawMatchesOnly | ( | const cv::Mat & | image1, |
const std::vector< cv::KeyPoint > & | keypoints1, | ||
const cv::Mat & | image2, | ||
const std::vector< cv::KeyPoint > & | keypoints2, | ||
const std::vector< f2d::Match > & | matches, | ||
cv::Mat & | display | ||
) |
Definition at line 18 of file desc_match.cpp.
Definition at line 43 of file desc_match.cpp.
Definition at line 15 of file desc_match.cpp.