フィルターのクリア

Where can I find video files with the avi extension ?

5 ビュー (過去 30 日間)
abood kasim
abood kasim 2024 年 1 月 13 日
回答済み: Image Analyst 2024 年 1 月 15 日
Hi, I want to do research on video encryption. Where can I find the original video of
flamingo.avi , rhinos.avi ,train.avi ,viptrain.avi , foreman.avi that used by researchers always for encryption
thank you

回答 (3 件)

Walter Roberson
Walter Roberson 2024 年 1 月 13 日
移動済み: Image Analyst 2024 年 1 月 15 日
which viptrain.avi
/MATLAB/toolbox/vision/visiondata/viptrain.avi
I do not know where the others are at the moment.
  1 件のコメント
abood kasim
abood kasim 2024 年 1 月 14 日
移動済み: Image Analyst 2024 年 1 月 15 日
thank you

サインインしてコメントする。


Sulaymon Eshkabilov
Sulaymon Eshkabilov 2024 年 1 月 14 日
編集済み: Sulaymon Eshkabilov 2024 年 1 月 15 日
If you want to find out what .avi files are resiging in a specific directory/folder, then this is how to do it:
Folder = '\OneDrive\Documents\MATLAB'; % Specify the address where the *.avi files are residing
Avi_Files = dir(fullfile(folder, '*.avi')); % Find all the *.avi ext files inside a specified directory
% Display the names of all the *.avi files:
for jj = 1:numel(Avi_Files)
disp(Avi_Files(jj).name)
end
  4 件のコメント
abood kasim
abood kasim 2024 年 1 月 15 日
i am find two videos, with your maner rhinos,viptrain thank you agin
Sulaymon Eshkabilov
Sulaymon Eshkabilov 2024 年 1 月 15 日
Hi Abood,
The point here is that you should accept the proposed anwer by me or Walter, and not your comment "Thank you sir". And if you like the proposed answer, you can also vote "Thumb up"
All the best.

サインインしてコメントする。


Image Analyst
Image Analyst 2024 年 1 月 15 日
To find all files under a top level folder, you can do it like this:
% Specify the top level folder where the *.avi files are residing
folder = 'C:/Program Files/MATLAB';
% Find all the *.avi ext files inside the specified folder and its subfolders.
searchPattern = fullfile(folder, '**/*.avi')
fileList = dir(searchPattern)
numberOfFiles = numel(fileList)
% Display the names of all the *.avi files:
for k = 1: numberOfFiles
fullFileName = fullfile(fileList(k).folder, fileList(k).name);
fprintf('#%d of %d : "%s"\n', k, numberOfFiles, fullFileName)
end
Depending on how many toolboxes you have, the dir() call may take a minute or two.

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by