2013-06-12 08:00:00 -0600 | answered a question | Does OpenCV currently supply full APIs for Java? I'm also a new one who using java and opencv. Please see details how to setup java opencv with eclipse at this url; http://docs.opencv.org/2.4.4-beta/doc/tutorials/introduction/desktop_java/java_dev_intro.html. I test run with version 2.4.5 as the code below. It can run fine. Have a look the output images at the workspace directory. import org.opencv.core.Mat; import org.opencv.core.Size; import org.opencv.highgui.Highgui; import org.opencv.highgui.VideoCapture; import org.opencv.imgproc.Imgproc; public class Main { } Hopefully, this could help.. |