#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;
}
一键三连呀!