我已经尝试过这个代码并且它会给拼接器带来错误。我是否有用 import static com.googlecode.javacv.cpp.opencv_stitching.Stitcher; 它与拼接器给出了同样的错误。如果可以,请帮我解决这个问题。 谢谢。
代码是..
public class ImageStitching {
public static void main(String[] args){
MatVector images = new MatVector(2);
images.put(0,cvLoadImage("sample1.png"));
images.put(1,cvLoadImage("sample2.png"));
IplImage result = new IplImage(null);
int status = stitcher.stitch(images,result);
if( status == stitcher.OK )
{
cvSaveImage("result.png", result);
}
}
}
答案 0 :(得分:3)
您尚未在代码中声明stitcher
...
Stitcher stitcher = Stitcher.createDefault(false);