このサイトで画像をステッチする例をデバッグしようとしています。
これが私の完全なコードです。
#include < stdio.h >
#include < opencv2\opencv.hpp >
#include < opencv2\stitching\stitcher.hpp >
#ifdef _DEBUG
#pragma comment(lib, "opencv_core300d.lib")
#pragma comment(lib, "opencv_imgproc300d.lib") //MAT processing
#pragma comment(lib, "opencv_highgui300d.lib")
#pragma comment(lib, "opencv_stitching300d.lib")
#else
#pragma comment(lib, "opencv_core300.lib")
#pragma comment(lib, "opencv_imgproc300.lib")
#pragma comment(lib, "opencv_highgui300.lib")
#pragma comment(lib, "opencv_stitching300.lib")
#endif
using namespace cv;
using namespace std;
void main()
{
vector< Mat > vImg;
Mat rImg;
vImg.push_back(imread("./stitching_img/1.jpg"));
vImg.push_back(imread("./stitching_img/2.jpg"));
vImg.push_back(imread("./stitching_img/3.jpg"));
vImg.push_back(imread("./stitching_img/4.jpg"));
vImg.push_back(imread("./stitching_img/5.jpg"));
vImg.push_back(imread("./stitching_img/6.jpg"));
Stitcher stitcher = Stitcher::createDefault();
unsigned long AAtime = 0, BBtime = 0; //check processing time
AAtime = getTickCount(); //check processing time
Stitcher::Status status = stitcher.stitch(vImg, rImg);
BBtime = getTickCount(); //check processing time
printf("%.2lf sec \n", (BBtime - AAtime) / getTickFrequency()); //check processing time
if (Stitcher::OK == status)
imshow("Stitching Result", rImg);
else
printf("Stitching fail.");
waitKey(0);
}
しかし、私はエラーが発生しています:
opencvtest1.exe の 0x00007FFFB36A8B9C での初回例外: Microsoft C++ 例外: cv::Exception at memory location 0x0000003F09CBD6B0. opencvtest1.exe の 0x00007FFFB36A8B9C で未処理の例外: Microsoft C++ 例外: cv::Exception at memory location 0x0000003F09CBD6B0.
未処理の例外を検索しましたが、すべての回答がそれらの問題に対する具体的な解決策を示唆しているため、特定のケースで何が問題になっているのかわかりませんでした。
コードで何が間違っているのかを理解するのを手伝ってください。