我尝试使用OpenCV上的Stitcher::stitch
函数创建一种全景图。
我拍了大约24张图片来拼接它们,但最终结果(状态= OK)是1x1图像(黑色像素)。
如果我删除一些图像,它可以正常工作,但也许我错过了图像的某些部分。
我做得不好? 提前谢谢。
更新
我试图添加rois,占据每张图片的50%。 对于第一张图片,我选择正确的50%。最后,左边50%,其余我占左边50%和右边50%:
vector<Mat> imgs;
imgs.push_back(imread("/Users/myImages/IMG_0073.jpg"));
imgs.push_back(imread("/Users/myImages/IMG_0074.jpg"));
imgs.push_back(imread("/Users/myImages/IMG_0075.jpg"));
imgs.push_back(imread("/Users/myImages/IMG_0076.jpg"));
imgs.push_back(imread("/Users/myImages/IMG_0077.jpg"));
imgs.push_back(imread("/Users/myImages/IMG_0078.jpg"));
processImage(imgs);
我的功能是:
void processImage(vector imgs){
vector<vector<Rect>> rois;
vector<Rect> roisVect;
for (int j = 0; j < imgs.size(); j++) {
if (j == 0) {
Rect rect1 = Rect(imgs.at(j).cols*50/100, 0, imgs.at(j).cols*50/100,imgs.at(j).rows);
roisVect.push_back(rect1);
rois.push_back(roisVect);
roisVect.clear();
} else if (j == imgs.size() - 1) {
Rect rect2 = Rect(0, 0, imgs.at(j).cols*50/100, imgs.at(j).rows);
roisVect.push_back(rect2);
rois.push_back(roisVect);
roisVect.clear();
} else {
Rect rect3 = Rect(imgs.at(j).cols*50/100, 0, imgs.at(j).cols*50/100, imgs.at(j).rows);
Rect rect4 = Rect(0, 0, imgs.at(j).cols*50/100, imgs.at(j).rows);
roisVect.push_back(rect4);
roisVect.push_back(rect3);
rois.push_back(roisVect);
roisVect.clear();
}
}
Mat pano;
Stitcher stitcher = Stitcher::createDefault(try_use_gpu);
Stitcher::Status status = stitcher.stitch(imgs, rois, pano);
cout << endl << status;
cout << endl << pano.size();
if (!pano.empty())
imshow("pano", pano);
waitKey(10);
imwrite("/Users/myImages/final" + to_string(imgs.size()) + ".jpg", pano);
}
我的结果(cout)是:
0 //(好)
[1 x 1]