特征提取与检测13-FLANN特征匹配

2022/2/12 23:46:17

本文主要是介绍特征提取与检测13-FLANN特征匹配,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

FLANN特征匹配

    FLANN特征匹配介绍

    代码演示

FLANN特征匹配介绍

    快速最近邻逼近搜索函数库(Fast Approximate Nearest Neighbor Search Library)

    http://www.cs.ubc.ca/research/flann/

代码演示

#include <opencv2/opencv.hpp>
#include <opencv2/xfeatures2d.hpp>
#include <iostream>
#include <math.h>


using namespace cv;
using namespace std;
using namespace cv::xfeatures2d;


int main(int argc, char** argv) {
    Mat img1 = imread("D:/vcprojects/images/box.png", IMREAD_GRAYSCALE);
    Mat img2 = imread("D:/vcprojects/images/box_in_scene.png", IMREAD_GRAYSCALE);
    if (!img1.data || !img2.data) {
        return -1;
    }
    imshow("object image", img1);
    imshow("object in scene", img2);


    // surf featurs extraction
    int minHessian = 400;
    Ptr<SURF> detecto


这篇关于特征提取与检测13-FLANN特征匹配的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程