我想用以下脚本将IP-Cam(Axis P3905-R)连接到Matlab:
function readIPVideo()
cam = ipcam('http://192.168.13.125/mjpg/video.mjpg');%no login and password necessary
preview(cam);
closePreview(cam);
clear cam;
end
我收到以下错误消息:
"Error using readIPVideo (line 6)
Cannot connect to the IP Camera Stream URL. Make sure the URL is correct and authentication is provided if needed."
如果我将URL放入浏览器,则会连接到IP-Cam以及VLC-Player。为什么它不能与Matlab一起使用?我正在使用Matlab R2015a。该错误发生在Suse Linux Leap以及Windows 10中。
感谢您的帮助, 仪