Closed GoogleCodeExporter closed 9 years ago
Ok, I've fixed that in the source here:
http://code.google.com/p/javacv/source/detail?r=f91e96a69104e97ea832270472922dce
72e0c27a
but to test it out, you will need to recompile JavaCV... Let me know that it
works!
Original comment by samuel.a...@gmail.com
on 23 Jun 2012 at 10:56
Ok I'll look at it...
Original comment by aligokal...@gmail.com
on 25 Jun 2012 at 6:07
I tried to compile it but no success, could not be able to set reference path
for opencv\includes...
Any way i can provide sample stitching code for verifying the bug-fix, i also
attach a simple sample data
Original comment by aligokal...@gmail.com
on 25 Jun 2012 at 8:53
Attachments:
Sample Code:
stitcher = Stitcher.createDefault(false);
MatVector images = new MatVector(2);
images.put(0,cvLoadImage("sample1.png"));
images.put(1,cvLoadImage("sample2.png"));
CvMat result = new CvMat();
int status = stitcher.stitch(images,result);
if( status == stitcher.OK )
{
cvSaveImage(result);
}
Original comment by aligokal...@gmail.com
on 26 Jun 2012 at 11:52
Hi, i tried to compile JavaCV but no succes, i don't know too much about
JavaCpp but i could not define base directory for it. Added it to path but
it did not work.
Any way, i have provided simple images and code. It can be verified by
simply executing the code and seeing it show the result.
Original comment by aligokal...@gmail.com
on 26 Jun 2012 at 11:53
Ok, will try it out, thanks!
Original comment by samuel.a...@gmail.com
on 26 Jun 2012 at 1:46
With the following:
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);
}
I get this output:
Finding features...
Features in image #1: 1483
Features in image #2: 888
Finding features, time: 0.598631 sec
Pairwise matching
1->2 matches: 468
1->2 & 2->1 matches: 491
.Pairwise matching, time: 0.0889254 sec
Removed some images, because can't match them or there are too similar images: (2).
Try to decrease --match_conf value and/or check if you're stitching duplicates.
Need more images
So, it seems to be working...
Original comment by samuel.a...@gmail.com
on 1 Jul 2012 at 12:51
Yes it seems working....very well done...
Original comment by aligokal...@gmail.com
on 1 Jul 2012 at 2:59
The modifications have been included in JavaCV 0.2. Let me know that it works
alright, thanks!
Original comment by samuel.a...@gmail.com
on 22 Jul 2012 at 12:46
I tried and it works right. This bug can be closed
Original comment by aligokal...@gmail.com
on 23 Jul 2012 at 2:06
I tried the code from comment 7 and get this error:
Exception in thread "main" java.lang.RuntimeException: Uncompilable source code
- Erroneous ctor sym type: <any>
at opencvtest.StitchExperiment.main(StitchExperiment.java:37)
line 37 is IplImage result = new IplImage(null);
If I fix line 37 to this:
IplImage result = cvCreateImage( cvSize( image1.width()*2, image2.height() ),
IPL_DEPTH_32S, 1 );
I get:
Exception in thread "main" java.lang.NullPointerException: This pointer address
is NULL.
at com.googlecode.javacv.cpp.opencv_stitching$Stitcher.stitch(Native Method)
at opencvtest.StitchExperiment.main(StitchExperiment.java:43)
So I'm lost here...
Original comment by thomas.f...@gmail.com
on 14 Sep 2012 at 9:28
@thomas That's a known bug of the "compile on save" feature of NetBeans 7.1
(and up?), so disable it and try again. Please post your questions on the
mailing list if possible next time, thank you
Original comment by samuel.a...@gmail.com
on 15 Sep 2012 at 4:46
[deleted comment]
I have tried this code and there is a error with the stitcher, how can use
stitcher in Eclips?
i have import
import static com.googlecode.javacv.cpp.opencv_stitching.Stitcher;
and still it is give error.
If you can please can I have a solution for this issue.
Thank you
Original comment by sahpiy...@gmail.com
on 15 May 2013 at 12:45
Original issue reported on code.google.com by
aligokal...@gmail.com
on 21 Jun 2012 at 11:12