Closed GoogleCodeExporter closed 9 years ago
Can you try to hang on to references of the IplImage objects you create in
Java? MatVector doesn't do it on its own, at the moment anyway
Original comment by samuel.a...@gmail.com
on 18 Mar 2013 at 8:31
Thanks for the quick reply. I tried your suggestion and it seems to resolve my
issue.
I stored IplImages in an array list parallel to the MatVector.
Thanks again very much.
Original comment by kaan...@gmail.com
on 19 Mar 2013 at 8:01
[deleted comment]
[deleted comment]
can I know that where these result image saved? I have tried this code and
there where no errors, but could not find the result image.If you can please
consider about this issue.Thank you.
Original comment by sahpiy...@gmail.com
on 17 May 2013 at 5:27
Hi, As this answer said i have tried this code
int numOfImages =Integer.parseInt(txtNumOfImages.getText()) ;
Stitcher stitcher = Stitcher.createDefault(false);
IplImage[] images;
images=new IplImage[numOfImages];
images.put(i,cvLoadImage(txtpath.getText()));
int status = stitcher.stitch(images[numOfImages],result);
System.out.println("result ok...(Y)");
if( status == stitcher.OK )
{
cvSaveImage("images\\StitchImage.jpg", result);
System.out.println("stitcher OK (Y)");
}
result = cvLoadImage("images\\StitchImage.jpg");
instead of using the MatVector as MatVector images = new
MatVector(numOfImages);
Can I please have an idea about how to implement
images.put(i,cvLoadImage(txtpath.getText())); and
int status = stitcher.stitch(images,result);
with arrayList instead of MatVectorepleas. thank you.I am really stuck with my
project here.
Original comment by hash...@gmail.com
on 4 Sep 2013 at 10:30
The original issue has been fixed, so please post questions you may have on the
mailing list, thank you!
Original comment by samuel.a...@gmail.com
on 16 Sep 2013 at 11:15
Original issue reported on code.google.com by
kaan...@gmail.com
on 18 Mar 2013 at 8:15