how to save stream video from my ipcam to matlab in directory
2 次查看(过去 30 天)
显示 更早的评论
hi please i would like to have any code source whose help me to have and save stream video from ipcam to matlab .i have similar functon but it'is gave me image.
url = 'http://192.168.0.3:8080/shot.jpg';
ss=imread(url);
fh = imshow(ss, 'Parent', handles.axes1);
while(1)
ss=imread(url);
set(fh,'CData',ss);
drawnow;
end
I would like to have video. thx best
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Support Package for IP Cameras 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!