Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How to organize similarly named files: Round 2

1 Ansicht (letzte 30 Tage)
Frank
Frank am 20 Mai 2011
Geschlossen: MATLAB Answer Bot am 20 Aug. 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 Kommentar
Andy
Andy am 20 Mai 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.

Antworten (0)

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by