Closed GoogleCodeExporter closed 9 years ago
This probably has the same cause as issue #294, i.e.: Try to keep a Java
reference to all your images.
Original comment by samuel.a...@gmail.com
on 11 Apr 2013 at 10:44
I am doing the same project,
btw, how you do face recognition using Eigen and Fisher Face Method?
I can't do the fisher part
I'll appreciate your respond
Original comment by muhammad...@gmail.com
on 22 Jun 2013 at 7:46
I'm not sure why I mentioned issue #294, it doesn't sound related. Anyway, we
can do face recognition as shown here:
http://pcbje.com/2012/12/doing-face-recognition-with-javacv/
But it's a bit buggy. We need to keep a Java reference to all IplImage objects
created, or they will get garbage collected, and memory errors will occur.
Does it run properly, or do you still have issues with that?
Original comment by samuel.a...@gmail.com
on 16 Sep 2013 at 11:21
as memory issue mentioned by Samuel, yes I am continuously getting memory or
null reference issue if trying to use the example . Is there any permanent
solution available..
getting this error-
http://answers.opencv.org/question/22163/android-error-fatal-signal-11-sigsegv-a
t/
and all available alternatives mentioned failed in Nexus 4
Original comment by abhishek...@gmail.com
on 11 Oct 2013 at 8:15
Thanks for all who responded, Specially Samuel :)
U helped a lot..
Because of your guidance I did my project..
Thanks :)
Regards,
Hammad
Original comment by hnfarid...@gmail.com
on 12 Oct 2013 at 7:01
@abhishek Simply keep a live reference to `grayImg`, for example in an array or
something, and that should fix the issue.
So, it looks like that works around this issue, but I agree this needs some
work...
Original comment by samuel.a...@gmail.com
on 4 Jan 2014 at 2:12
Issue 416 has been merged into this issue.
Original comment by samuel.a...@gmail.com
on 31 Jan 2014 at 2:32
Since JavaCPP/JavaCV 0.8, the mapping of the C++ API uses `cv::Mat` instead of
`IplImage`, so this memory management issue no longer exists. Enjoy!
Original comment by samuel.a...@gmail.com
on 30 Jul 2014 at 11:31
Original issue reported on code.google.com by
hnfarid...@gmail.com
on 9 Apr 2013 at 11:11