没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
本文实例为大家分享了OpenCV实现多图像拼接成大图的具体代码,供大家参考,具体内容如下 开始尝试merge函数,具体如下: 定义四个矩阵A,B,C,D。得到矩阵combine。 #include<iostream> #include <core> #include <opencv2> #include <opencv2> using namespace std; using namespace cv; int main() { cv::Mat a = (cv::Mat_<int>(2,2)<
资源详情
资源评论
资源推荐
OpenCV实现多图像拼接成一张大图实现多图像拼接成一张大图
本文实例为大家分享了OpenCV实现多图像拼接成大图的具体代码,供大家参考,具体内容如下
开始尝试merge函数,具体如下:
定义四个矩阵A,B,C,D。得到矩阵combine。
#include<iostream>
#include <core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace std;
using namespace cv;
int main()
{
cv::Mat a = (cv::Mat_<int>(2,2)<<1,2,3,4);
cv::Mat b = (cv::Mat_<int>(2,2)<<5,6,7,8);
cv::Mat c = (cv::Mat_<int>(2,2)<<9,10,11,12);
cv::Mat d = (cv::Mat_<int>(2,2)<<13,14,15,16);
std::vector<cv::Mat> v1;
v1.push_back(a);
v1.push_back(b);
v1.push_back(c);
v1.push_back(d);
cv::Mat combine;
cv::merge(v1, combine);
cout << "combine=" <<combine<< endl;
cout<<"Size of combine:"<<combine.size()<<endl;
system("pause");
return 0;
}
结果如下:
显然,不是我们需要的结果。
尝试hconcat和vconcat函数,这两个函数opencv本身并没有。
详细介绍参见hconcat和vconcat。
具体实现如下:
#include <iostream>
#include <core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace std;
using namespace cv;
int main()
{
cv::Mat a = (cv::Mat_<int>(2,2)<<1,2,3,4);
cv::Mat b = (cv::Mat_<int>(2,2)<<5,6,7,8);
cv::Mat c = (cv::Mat_<int>(2,2)<<9,10,11,12);
cv::Mat d = (cv::Mat_<int>(2,2)<<13,14,15,16);
Mat combine,combine1,combine2;
hconcat(a,b,combine1);
hconcat(c,d,combine2);
vconcat(combine1,combine2,combine);
//namedWindow("Combine",CV_WINDOW_AUTOSIZE);
//imshow("Combine",combine);
cout<<"Combine=:"<<combine<<endl;
system("pause");
return 0;
}
结果:
图像拼接实现
#include <iostream>
#include <core/core.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace std;
using namespace cv;
int main()
{
//cv::Mat a = (cv::Mat_<int>(2,2)<<1,2,3,4);
//cv::Mat b = (cv::Mat_<int>(2,2)<<5,6,7,8);
//cv::Mat c = (cv::Mat_<int>(2,2)<<9,10,11,12);
//cv::Mat d = (cv::Mat_<int>(2,2)<<13,14,15,16);
Mat combine,combine1,combine2;
Mat a=imread("1.jpg");
Mat b=imread("2.jpg");
Mat c=imread("3.jpg");
Mat d=imread("4.jpg");
hconcat(a,b,combine1);
hconcat(c,d,combine2);
vconcat(combine1,combine2,combine);
namedWindow("Combine",CV_WINDOW_AUTOSIZE);
imshow("Combine",combine);
waitKey(0);
//cout<<"Combine=:"<<combine<<endl;
system("pause");
return 0;
}
图像结果显示如下:
weixin_38663608
- 粉丝: 5
- 资源: 948
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
评论1