want to order and group files
조회 수: 4 (최근 30일)
이전 댓글 표시
hi there! so I have folders containing dicom files and bitmap files of the dicom data. the dicom files have names that corresponds with the bitmap files, with one dicom files corresponding to many bitmap files so for exampe, the dicom name is 00022.dcm while the corresponding bitmap files would be 2015220700022_Frame20.bmp, 2015220700022_Frame21.bmp and so on, the number after the frame marks which frame of the dicom sequence the bitmap picture is.
the bitmap files and dicom files are in different folders, and the dicom files are located in the subfolder while the input is in a different main folder but both are still in the same path.
what i want to do is to pair the dicom files with its corresponding bitmap in a new folder, a folder for each dicom name ( so eg. folder 00022 contains dicom file 00022.dcm and the bitmap sequences. I have tried a lot of the examples posted here to no avail please help!
trying to apply dir to dicom
% dicom files
mainfolder = 'Users/smn/Downloads/summer project/CL2 Dicom/Daniel';
subfolders = dir(fullfile(mainfolder, 'P*'));
subfolder_list = {subfolders(:).name}; % relevant filenames in folders
for i = 1 : length(subfolder_list)
mkdir( dicomname ) % dicom name hasnt been implemented yet
end
%for input
input = 'Users/smn/Downloads/summer project/input';
if ~isdir(input)
errmsg = sprintf('Error: The following folder does not exist:\n%s', input);
return;
end
seq = '*'; %sequence of bitmap file ( 1,2,34, etc)
I = dir( fullfile( input, '*_Frameseq.bmp')) % i want to group the files based on the asterisk in this %line
I = natsortfiles(I);
for k = 1: numel(I);
mkdir(F)
F = fullfile(input, I(k).name) % grouping bitmap files based on three digits before _,
end
댓글 수: 0
채택된 답변
Ive J
2021년 7월 13일
You can try regexp or pattern:
dcm = "00022.dcm";
bmp = ["2015220700022_Frame20.bmp", "2015220700023_Frame20.bmp", "2015220700022_Frame23.bmp"];
% with pattern
ptt = digitsPattern + regexprep(dcm, '.dcm$', '') + "_";
matchedIdx = contains(bmp, ptt)
% with regexp
matchedIdx = ~cellfun(@isempty, regexp(bmp, "\d+" + regexprep(dcm, '.dcm$','') + "_"))
댓글 수: 6
Ive J
2021년 7월 21일
@sesilia maidelin can you set a breakpoint before your loop and save workspace to a mat file and upload it here?
save('mywdData.mat', 'dcmlist', 'bmplist', 'nufolderpath') % then upload mywdData.mat here
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 DICOM Format에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!