opencv图像拼接

#include 
#include 
#include 
#include 
using namespace std;
using namespace cv;
 
int main()
{
	Mat image1;
	image1= cv::imread("1.jpg");
	if(!image1.data)
	{
		cout<<"image does not exist"<

 

你可能感兴趣的:(opencv)