OpenCv实现两幅图像的拼接

直接贴上源码

来源:http://www.myexception.cn/image/1498389.html

实验效果

Left.jpg                            

OpenCv实现两幅图像的拼接_第1张图片

right.jpg

OpenCv实现两幅图像的拼接_第2张图片

ImageMatch.jpg

OpenCv实现两幅图像的拼接_第3张图片

 

#include 

#include 

#include "opencv2/core/core.hpp"

#include "opencv2/objdetect/objdetect.hpp"

#include "opencv2/features2d/features2d.hpp"

#include "opencv2/highgui/highgui.hpp"

#include "opencv2/calib3d/calib3d.hpp"

#include "opencv2/nonfree/nonfree.hpp"

#include "opencv2/imgproc/imgproc_c.h"

#include "opencv2/legacy/legacy.hpp"

#include "opencv2/legacy/compat.hpp"

 

using namespace cv;

using namespace std;

 

int main()

{

    Mat leftImg=imread("left.jpg");

    Mat rightImg=imread("right.jpg");

    if(leftImg.data==NULL||rightImg.data==NULL)

        return 0;

 

    //转化成灰度图

    Mat leftGray;

    Mat rightGray;

    cvtColor(leftImg,leftGray,CV_BGR2GRAY);

    cvtColor(rightImg,rightGray,CV_BGR2GRAY);

 

    //获取两幅图像的共同特征点

    int minHessian=400;

    SurfFeatureDetector detector(minHessian);

    vector leftKeyPoints,rightKeyPoints;

    detector.detect(leftGray,leftKeyPoints);

    detector.detect(rightGray,rightKeyPoints);

    SurfDescriptorExtractor extractor;

    Mat leftDescriptor,rightDescriptor;

    extractor.compute(leftGray,leftKeyPoints,leftDescriptor);

    extractor.compute(rightGray,rightKeyPoints,rightDescriptor);

    FlannBasedMatcher matcher;

    vector matches;

    matcher.match(leftDescriptor,rightDescriptor,matches);    

    int matchCount=leftDescriptor.rows;

    if(matchCount>15)

    {

        matchCount=15;

        //sort(matches.begin(),matches.begin()+leftDescriptor.rows,DistanceLessThan);

        sort(matches.begin(),matches.begin()+leftDescriptor.rows);

    }    

    vector leftPoints;

    vector rightPoints;

    for(int i=0; i(3,3)<<1.0,0,leftImg.cols, 0,1.0,0, 0,0,1.0);

 

    //拼接图像

    Mat tiledImg;

    warpPerspective(leftImg,tiledImg,shftMat*homo,Size(leftImg.cols+rightImg.cols,rightImg.rows));

    rightImg.copyTo(Mat(tiledImg,Rect(leftImg.cols,0,rightImg.cols,rightImg.rows)));

 

    //保存图像

    imwrite("tiled.jpg",tiledImg);

        

    //显示拼接的图像

    imshow("tiled image",tiledImg);

    waitKey(0);

    return 0;

}


你可能感兴趣的:(OpenCv实现两幅图像的拼接)