Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How to organize similarly named files: Round 2

1 visualización (últimos 30 días)
Frank
Frank el 20 de Mayo de 2011
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hello!
Got kinda lost, I'm not sure once again. So far I've written the script that tells MatLab to read all the images I have in a folder, but I'm not quite sure how to make it recognize the small differences in the file name and move it into a specified folder.
Thanks
-Frank
Code:
%Splits CH1 in the same folder with CH2
fprintf('Select Directory \n')
A = uigetdir();
cd(A)
mkdir('Channel 1')
mkdir('Channel 2')
myFolder = uigetdir();
filePattern = fullfile(myFolder, '*.tif');
tifFiles = dir(filePattern);
for k = 1:length(tifFiles)
baseFileName = tifFiles(k).name;
fullFileName = fullfile(myFolder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
imageArray = imread(fullFileName);
for m = 1:length(tifFiles)
n = dir *LineScan-2010_12_08-005_Cycle001_CurrentSettings_Ch1_*.tif
movefile(n , 'C:\Users\xuf\Desktop\LineScan-
2010_12_08-005\Target\Channel 1')
end
movefile('*.tif', 'C:\Users\xuf\Desktop\LineScan-2010_12_08-005\Target\Channel 2')
imshow(imageArray);
drawnow;
end
  1 comentario
Andy
Andy el 20 de Mayo de 2011
First, it is generally recommended that you not accept an answer until you are fully satisfied with it. Second, it is also generally recommended that you don't duplicate your questions. You could have instead added this comment to your previous question without duplicating.

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by