Ask Your Question

sc3sc3's profile - activity

2018-04-14 14:04:58 -0600 received badge  Nice Answer (source)
2013-06-01 14:26:24 -0600 received badge  Teacher (source)
2013-05-07 08:12:00 -0600 commented answer Face Detection through a webcam in java

another thing i don't see in your code is: System.loadLibrary(Core.NATIVE_LIBRARY_NAME);

you have to load the opencv libraries see https://github.com/Itseez/opencv/blob/master/samples/java/eclipse/HelloCV/src/Main.java

2013-05-07 06:11:04 -0600 received badge  Supporter (source)
2013-05-07 02:35:02 -0600 received badge  Editor (source)
2013-05-07 02:34:27 -0600 answered a question Face Detection through a webcam in java

there's a problem with your main method i think you should start by changing

public static void Main(String args[])

into this:

public static void main(String args[])

i didn't run the code so their might be other problems too :-)

2013-05-06 12:30:24 -0600 commented answer Java : How to use Crosscheck ?

thanks for the response sorry for the anwser/comment thing

2013-05-06 05:57:54 -0600 commented answer real time face tracking java

hi orochi, could you please update your post with the changes you made ? thanks

2013-05-06 05:47:11 -0600 answered a question Java : How to use Crosscheck ?

"not wrapped by the java-api"

i've noticed that the functionality accessible through the java bindings is a subset of the full opencv functionality

are there plans of expanding the java-api in the future ? is it wip ? i searched the opencv website but didn't find any info on this matter

thanks sc3sc3