Live frames from IP Camera

5 views (last 30 days)
Zafer Orhan
Zafer Orhan on 16 Mar 2016
Edited: Image Analyst on 18 Mar 2016
Hi, How can i get the ip camera's frames for video processing?

Answers (1)

Explorer
Explorer on 16 Mar 2016
Try this:
url = 'http://192.168.1.4:8080/shot.jpg';
ss = imread(url);
fh = image(ss);
while(1)
ss = imread(url);
set(fh,'CData',ss);
drawnow;
end
  3 Comments
Zafer Orhan
Zafer Orhan on 18 Mar 2016
It's not working.
url = ' rtsp://192.168.2.229:554/av0_1';
ss = imread(url);
fh = image(ss);
while(1)
ss = imread(url);
set(fh,'CData',ss);
drawnow;
end
Error using imread (line 330) Cannot read URL " rtsp://192.168.2.229:554/av0_1".
Image Analyst
Image Analyst on 18 Mar 2016
Edited: Image Analyst on 18 Mar 2016
Are you on the same side of the router as your camera, or are you, say, at work and trying to access a camera attached to your home router? Is that URL the one the manufacturer or your ip camera told you to use? Did you try things like using http instead of rtsp, getting rid of av0_1, changing 554 to 8080, and those kinds of things?
Do you have the hardware support packages for a webcam installed, though I'm not sure they're needed (since you're using imread), but it can't hurt.
Here's a snippet from my webcam app:
% Make sure you run "supportPackageInstaller" and select installed "OS Generic Video Interface" and "USB Webcams" support packages.
% You can also get to this from the Home tab, the "Add-ons -> Get Hardware Support Packages" button.
% If you can't get it to run, make sure that the camera is seen by windows by looking in the "Imaging Devices" category in Device Manager.

Sign in to comment.

Categories

Find more on MATLAB Support Package for IP Cameras in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!