私はこのコードを持っています:
#include <opencv2\stitching\stitcher.hpp>
int Stitching()
{
Stitcher m_stitcher = m_stitcher.createDefault(false);
vector<Mat> images;
Mat img1 = imread("0.jpg"); //read image 0
Mat img2 = imread("1.jpg"); //read image 1
Mat Result;
//add images to the array
images.push_back(img1);
images.push_back(img2);
m_stitcher.stitch(images, Result);
imwrite("panorama.jpg",Result);
return 0;
}
ビルド後、次のエラーが発生します。
エラー 4 エラー C2248: 'cv::Stitcher::Stitcher': クラス 'cv::Stitcher' で宣言されたプライベート メンバーにアクセスできません C:\Users\Desktop\Projects\SamplePanorama - PanoramaStitch\SamplePanorama \StitchEngine.cpp 602
Stitch() を正しく機能させるには何を追加すればよいですか?