It is first time when I am using OpenCV, and that is for made a simple image stitching ... and I was tried the following simple code:
Mat image1 = imread("D:/Tempx/Image1.bmp");
Mat image2 = imread("D:/Tempx/Image2.bmp");
std::vector<cv::Mat> vImg;
vImg.push_back(image1);
vImg.push_back(image2);
Mat resImage;
Stitcher stitch = Stitcher::createDefault(TRUE);
Stitcher::Status stat = stitch.stitch(vImg, resImage);
but on the last line of code, the application crash:
I am using VS2008, in Debug mode, linked by opencv_world300d.dll, msvcp120d.dll, and msvcr120d.dll ... the images are well known:
and
Could you help me ? Thank you.