3

このコードを試してみましたが、スティッチャーでエラーが発生します。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);
        }
    }
}
4

1 に答える 1