我在文件夾中有160個圖像。名字圖片是picture001-picture161。我想在循環中逐漸加載所有圖像。它以某種方式在matlab中做出來?從matlab文件夾中逐漸加載圖像
-5
A
回答
0
您需要首先獲取目錄中所有圖像的列表,然後使用imread加載它們中的每一個。
% Get the images wherever they are (assumes they start with "picture")
folder = '/path/to/pictures'
files = dir(fullfile(folder, 'picture*'));
files = cellfun(@(filename)fullfile(folder, filename), {files.name}, 'uni', 0);
% Now loop through the images and load into a cell array
images = cell(size(files));
for k = 1:numel(files)
images{k} = imread(files{k});
end
如果所有這些圖像的大小相同,比你可以將它們加載到4D數字陣列
image_array = cat(4, images{:});
相關問題
- 1. 加載圖像逐漸在Objective-C
- 2. 從文件夾加載圖像文件
- 3. 從文件夾中加載圖像[VB.NET]
- 4. c#從文件夾加載圖像
- 5. 圖像無法從文件夾加載
- 6. 從不同文件夾加載圖像
- 7. 從Qt文件夾加載圖像
- 8. WPF從文件夾加載圖像
- 9. 加載tensorflow中的圖像文件夾
- 10. 逐漸加載重視
- 11. 從項目文件夾中的文件加載圖像
- 12. 遍歷文件,加載圖像 - Matlab
- 13. 從matlab中的文件夾連續讀取圖像文件
- 14. 從資產文件夾加載圖像而不是res文件夾減少Android上的預加載圖像?
- 15. UIImageView逐步加載圖像
- 16. 如何從文件夾中加載圖像,但沒有資源文件夾
- 17. 從項目中的文件夾中加載圖像
- 18. 使用NSBundle和plist從文件夾中加載圖像
- 19. 在C#中使用進度欄從文件夾加載圖像?
- 20. 從cocos2d中的子文件夾加載精靈圖像
- 21. 從GridView中的特定SDCard文件夾加載圖像
- 22. 從Android的資產文件夾中加載OpenCV的圖像
- 23. 從文件夾將圖像加載到ikimagebrowser中?
- 24. 使用python從一個文件夾逐個打開圖像?
- 25. Matlab徑向漸變圖像
- 26. 從資產文件夾加載圖片
- 27. 從bin文件夾加載視圖?
- 28. ALAssetLibrary可以在Document文件夾中加載圖像文件嗎?
- 29. 爲什麼從Heroku加載的圖像逐步加載
- 30. 從matlab中的特定文件夾訪問圖像
你可以用'dir'然後,在'for'循環,使用' imread' – marsei