如何在 MATLAB 中浏览视频文件

发布于 2025-01-08 00:24:36 字数 201 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我入戏太深 2025-01-15 00:24:36

使用 UIGETFILE 获取文件名和路径,然后将其传递给视频读取功能:

[filename, pathname] = uigetfile( ...
    {'*.avi;*.mpg;*.mpeg','Video Files (*.avi,*.mpg,*.mpeg)';
     '*.*',  'All Files (*.*)'}, ...
     'Select a video file');
mov = aviread(fullfile(pathname,filename));

AVIREAD 读取的视频格式不多。最好使用 VideoReader 类代替:

mov = VideoReader(fullfile(pathname,filename));

Get the file name and path with UIGETFILE, then pass them to video reading function:

[filename, pathname] = uigetfile( ...
    {'*.avi;*.mpg;*.mpeg','Video Files (*.avi,*.mpg,*.mpeg)';
     '*.*',  'All Files (*.*)'}, ...
     'Select a video file');
mov = aviread(fullfile(pathname,filename));

AVIREAD does not read much video formats. Better to use VideoReader class instead:

mov = VideoReader(fullfile(pathname,filename));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文