How to read images from the folder and select region of interest (rectangular) once
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
1) read all images from a folder
2) only need to select region of interest once then it will apply to all images
0 comentarios
Respuestas (1)
Akshay Malav
el 21 de Jun. de 2019
1) I am attaching a self explanatory code
% Get list of all jpg files in this directory
imagefiles = dir('*.jpg');
nfiles = length(imagefiles); % Number of files in the folder
for i=1:nfiles
currentfilename = imagefiles(i).name;
currentimage = imread(currentfilename);
images{i} = currentimage;
end
0 comentarios
Ver también
Categorías
Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!