opencv两张规格一样的图片拼接(纵向和横向)

#include <iostream>  
#include <core/core.hpp>  
#include <opencv2/imgproc/imgproc.hpp>  
#include <opencv2/highgui/highgui.hpp>  
using namespace std;
using namespace cv;
int main)
{
	Mat combine, combine1, combine2;
	Mat a = imread"0.png");
	Mat b = imread"3.png");
	hconcata, b, combine); //横向拼接
	//vconcata, b, combine); //纵向拼接
	namedWindow"Combine", CV_WINDOW_AUTOSIZE);
	imshow"Combine", combine);
	waitKey0);
	//cout<<"Combine=:"<<combine<<endl;  
	system"pause");
	return 0;
}

原始图片:

运行效果:

一键三连呀!

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注