MAXSIMJC 2016-01-21 02:28 采纳率: 0%
浏览 4160

单个模板的多目标识别 OPENCV

初学图像处理, 请多多指教!

我现在想解决的是用单个模板去匹配测试图中的多个目标(目标有仿射变换),参照了现成的一些SURF算法提取特征值进行匹配,可是这样只能匹配到一个目标。
后来发现匹配的knnmatch函数可以对一个 query descriptor返回k个最佳匹配,可是效果并不好, 不知有什么建议?十分感谢!

代码如下:

  Mat img1 = imread( "q.jpg", CV_LOAD_IMAGE_GRAYSCALE );
  Mat img2 = imread( "qw.jpg", CV_LOAD_IMAGE_GRAYSCALE );

    //-- Step 1: Detect the keypoints using Sift Detector
  SiftFeatureDetector  detector( hessian );

  vector<KeyPoint> queryKeypoints, trainKeypoints;

  detector.detect( img1, queryKeypoints );
  detector.detect( img2, trainKeypoints );

    //-- Step 2: Extract the keypoints using Sift Extractor
    Mat queryDescriptor,trainDescriptor;// extract keypoints
     SiftDescriptorExtractor extractor;  //Create Descriptor Extractor
    extractor.compute( img1, queryKeypoints, queryDescriptor );
    extractor.compute( img2, trainKeypoints, trainDescriptor );

        //--Step3: Match 
        vector<vector<DMatch>> m_knnMatches;
        vector<DMatch>m_Matches;
        vector<DMatch>n_Matches;
    const float minRatio = 1.f / 1.5f;

        matcher.knnMatch(queryDescriptor,trainDescriptor,m_knnMatches,3);
        for (size_t i=0; i<m_knnMatches.size(); i++)
        {
            const cv::DMatch& bestMatch = m_knnMatches[i][0];
            const cv::DMatch& betterMatch = m_knnMatches[i][1];
            const cv::DMatch& betterrMatch = m_knnMatches[i][2];
            float distanceRatio = bestMatch.distance / betterMatch.distance;
            float distanceRatio1 = betterMatch.distance / betterrMatch.distance;
            if (distanceRatio < minRatio)
        {
                m_Matches.push_back(bestMatch);
            }
            if (distanceRatio1 < minRatio)
            {
                n_Matches.push_back(betterMatch);
            }
        }

        Mat img_matches;
  drawMatches( img1,queryKeypoints,img2,trainKeypoints,m_Matches, img_matches, Scalar::all(-1), Scalar::all(-1), vector<char>(), DrawMatchesFlags::NOT_DRAW_SINGLE_POINTS );

        Mat img_matches2;
  drawMatches( img1,queryKeypoints,img2,trainKeypoints,n_Matches, img_matches2, Scalar::all(-1), Scalar::all(-1), vector<char>(), DrawMatchesFlags::NOT_DRAW_SINGLE_POINTS );

  • 写回答

3条回答 默认 最新

  • shiter 人工智能领域优质创作者 2016-01-21 02:46
    关注

    我记得是可以匹配多个的哇,你代码发上来瞅瞅啊,opencv那些函数效果都一般,你得自己多调试些参数

    评论

报告相同问题?

悬赏问题

  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员
  • ¥15 matlab生成电测深三层曲线模型代码