使用JavaCV进行图像拼接:编译错误

时间:2013-05-16 10:49:57

标签: opencv javacv image-stitching

我已经尝试过这个代码并且它会给拼接器带来错误。我是否有用 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);
        }
    }
}

1 个答案:

答案 0 :(得分:3)

您尚未在代码中声明stitcher ...

Stitcher stitcher = Stitcher.createDefault(false);