I've been trying to follow tutorials for javacv from various tutorial sites, but the biggest problem was that almost every single tutorials use cvCreate... methods to bring images and videos. But when I type those in, I can't find the methods in any libraries. I downloaded the latest javacv-bin file from bytedeco and added all the libraries from that download to my project, but it's still not working. Other classes such as Mat, CvCapture work perfectly. What can be the problem?
here's one tutorial i've been following: https://www.youtube.com/watch?v=oliqc3B9Wrc&index=3&list=PLDk0xqo2QeH-4XZ93KH38jOoGOd60-2GO
P.S. Can you recommand any javacv and java tutorial for beginners? I'm stuck trying to use built in webcam on my laptop to do basic camera features such as capturing and recording.
Did you statically import packages like below ?
import static org.bytedeco.javacpp.opencv_core.*;
import static org.bytedeco.javacpp.opencv_imgproc.*;
import static org.bytedeco.javacpp.opencv_videoio.*;