Quantcast
Channel: OpenCV Q&A Forum - RSS feed
Viewing all articles
Browse latest Browse all 41027

Opencv Videocapture cannot get stream

$
0
0
hey i have the following code but the link that im using seems that it will not work no matter what i try to do im using opencv 3.0 any help would be appreciated. Thanks in advance. import org.opencv.core.*; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.core.Core; import org.opencv.videoio.VideoCapture; public class VideoCap { public static void main (String args[]){ System.loadLibrary(Core.NATIVE_LIBRARY_NAME); VideoCapture camera = new VideoCapture("http://86.45.26.248:8080/?action=stream?dummy=param.mjpg"); if(!camera.isOpened()){ System.out.println("Error"); } else { Mat frame = new Mat(); while(true){ if (camera.read(frame)){ System.out.println("Frame Obtained"); System.out.println("Captured Frame Width " + frame.width() + " Height " + frame.height()); Imgcodecs.imwrite("camera.jpg", frame); System.out.println("OK"); break; } } } camera.release(); } }

Viewing all articles
Browse latest Browse all 41027

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>