Ask Your Question

kim123's profile - activity

2020-12-08 22:52:19 -0600 received badge  Notable Question (source)
2017-10-06 09:11:09 -0600 received badge  Popular Question (source)
2016-02-04 08:59:06 -0600 received badge  Nice Question (source)
2015-03-06 07:11:02 -0600 received badge  Student (source)
2015-03-06 02:37:41 -0600 received badge  Self-Learner (source)
2015-03-05 09:01:24 -0600 answered a question How do I build java libraries into existing OpenCV 2.4.10 installation?

Ok, I spent some time studying the make file and figured out how to specify the targets that I wanted built. I selected the ones that seemed related to Java and it worked.

2015-03-05 08:58:08 -0600 asked a question Are there any new ways to improve eye detection?

I have been working with the OpenCV 2.4.10 Java libraries and Raspbian on a Raspberry PI 2. I got the basic face detection and tracking working pretty well on the RPI 2 and decided to go for face recognition. I have been translating the code from Mastering OpenCV with Practical Computer Vision Projects into Java and trying to build an application first on my laptop before trying it on the RPI 2. The problem is that the face detection works well, but the eye detection that is key to preprocessing images isn't working. I have tried varying lots of different parameters and using different cascade files, but the best I have been able to get is one eye accurately detected out of 10 images. I do have to mention that I am using images of myself wearing glasses, because I always wear glasses. The eyeglasses file actually seems to perform worse that the left eye and right eye files.

Some of the supposedly detected eyes on my face do not even remotely resemble an eye. So, I am looking for suggestions on ways to improve the detection especially with glasses.

2015-02-23 11:04:45 -0600 asked a question How do I build java libraries into existing OpenCV 2.4.10 installation?

I successfully built OpenCV 2.4.10 on a Raspberry PI 2 and tested it with a simple C++ program; however, when I went looking for the java jar I couldn't find it. I followed very detailed instructions for installing OpenCV on a Raspberry PI, but I wasn't looking at the time to ensure that the java libraries were included. I have verified that I have all the dependencies by running cmake in a new directory and checking the output for the java targets as shown in the tutorial.

Is there a simple way to build just the java libraries? I am a novice when it comes to cmake and make. I have done very little C and C++ programming and that was many years ago with a nice IDE.