How to modify the images, were read by "dir" function?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello, So nice guys.
Can you help me?
I did print out many images like this below.
--------------------------------------
path='C:\'
list=dir(path)
name={list.name}
imagelist=name(3:end)
montage(imagelist)
-------------------------------------
I want to modify (example: imrotate, im2gray etc..) the images before I print out the images (montage);
Also, I want to save these images using function imwrite.
But, I couldn't,,
So, What can I do for this?
Thank you
댓글 수: 1
Stephen23
2024년 9월 20일
As an aside, note that
imagelist=name(3:end)
is a buggy attempt to remove the dot directory names:
https://www.mathworks.com/matlabcentral/answers/1699230-folder-listing-with-dir-on-mac#answer_945260
As Walter Roberson wrote: "That code is wrong on every operating system that MATLAB has ever run on".
The recommended approach is to specify a non-empty DIR search name, or use e.g. ISMEMBER, SETDIFF, or similar:
답변 (2개)
dpb
2024년 9월 16일
montage returns only an montage object; not the individual images. Review the information at <Image Sequences and Batch Processing> and select from the various options outlined the best that matches your needed workflow to process each image.
댓글 수: 0
Angelo Yeo
2024년 9월 20일
편집: Angelo Yeo
2024년 9월 20일
Neither imrotate nor im2gray support sequence image processing so I believe it would be good to use for loops in this case.
imds = imageDatastore(fullfile(matlabroot,"toolbox","images","imdata","AT3*.tif"));
figure; montage(imds); title('original image set')
N = length(imds.Files);
tempCell = cell(N, 1);
for i =1:N
I = readimage(imds,i); % fixed from "N" to "i". Thanks to DGM's comment.
I = imrotate(I, 90);
I = im2gray(I);
tempCell{i} = I;
end
figure; montage(tempCell); title('processed image set')
댓글 수: 1
DGM
2024년 9월 20일
imds = imageDatastore(fullfile(matlabroot,"toolbox","images","imdata","AT3*.tif"));
N = length(imds.Files);
tempCell = cell(N, 1);
for k = 1:N
I = readimage(imds,k); % loop index!
I = imrotate(I, 90);
I = im2gray(I);
tempCell{i} = I;
end
% create an image
outpict = imtile(tempCell);
% save the image
imwrite(outpict,'myfile.png')
... but it seems more that the images should be saved individually within the loop, so the use of montage() may be strictly for visualization.
imds = imageDatastore(fullfile(matlabroot,"toolbox","images","imdata","AT3*.tif"));
outputpath = '.'; % pick where they go
N = length(imds.Files);
for k = 1:N
I = readimage(imds,k); % loop index!
I = imrotate(I, 90);
I = im2gray(I);
% if the visualization is not needed,
% the images can just be saved in the loop
[~,fname,ext] = fileparts(imds.Files{k});
thisfname = fullfile(outputpath,[fname ext]);
imwrite(I,thisfname)
end
... I'm assuming we're not overwriting the original files.
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Data Workflows에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!