如何在 MATLAB 中浏览视频文件
clc
clear all
[filename, user_canceled] = imgetfile
[x,map]=imread(filename);
imshow(x);
imwrite(x,'imadiate.jpg')
我这样做是为了在 MATLAB 中浏览图像文件。如何浏览视频文件?
clc
clear all
[filename, user_canceled] = imgetfile
[x,map]=imread(filename);
imshow(x);
imwrite(x,'imadiate.jpg')
I do this to browse for image files in MATLAB. How can I browse for video files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 UIGETFILE 获取文件名和路径,然后将其传递给视频读取功能:
AVIREAD 读取的视频格式不多。最好使用 VideoReader 类代替:
Get the file name and path with UIGETFILE, then pass them to video reading function:
AVIREAD does not read much video formats. Better to use VideoReader class instead: