i’m trying to connect to ip camera from java using openCV.
I see examples of C code where people were using cvCaptureFromFile(“url”) method, providing proper url and connecting to camera, but the thing is that THERE IS NO SUCH METHOD IN JAVA!!!
Please help if you have any suggestions.
Your help will be appreciated 🙂
I’d recommend you use the Java Native Interface to interface to the C++ or C API version of OpenCV.
In any case, I’d recommend using C++ for general OpenCV/image processing. Boost will satisfy your needs in terms of library support, etc.