Our team had some trouble accessing our IP camera's stream in OpenCV, so here's what we did in case other teams are having similar issues.
We are using OpenCV-2.4.8 and
JavaCV-0.7.
Code:
IPCameraFrameGrabber grabber = new IPCameraFrameGrabber("http://YOUR_CAMERA'S_IP_ADDRESS/axis-cgi/mjpg/video.cgi?resolution=480x360&fps=INSERT_FPS_HERE");
grabber.start();
For example, our team (2601) has the following URL:
Code:
http://10.26.1.11/axis-cgi/mjpg/video.cgi?resolution=480x360&fps=100
Hope this helps.