필터 지우기
필터 지우기

filtering for DICOM files that have no .dcm extension

조회 수: 3 (최근 30일)
Victoria Klimaj
Victoria Klimaj 2013년 9월 28일
댓글: Walter Roberson 2013년 9월 29일
Hi,
I am trying to run a MATLAB script that deals with DICOM files and would like the script to go into individual folders and grab all of the DICOMs within each folder. However, I am having trouble doing so because my DICOMs don't have a specific extension that I can filter for (no .dcm extensions; they are "Unix Executable Files").
Is there any other aspect of these DICOM files that I might be able to easily filter for? All I really want to do is skip over the ".", ".." and ".DS_Store" hidden files by doing so. I was considering filtering by name (the are all named a series of 8 numbers) but that seems like it would require another loop and I am wondering if there is an easier way to do this.
inputs{1, crun} = cellstr(spm_select('FPList'[allinput,'T1Rawunzip',filesep,OrderForDicoms3{1,crun}],'****'))
^Above is the way I currently have it set up ("allinput" is a path that is specified earlier, T1RawUnzip is a folder name, and OrderForDicoms3{1,crun} is referring to a mat file that has specific folder extensions listed).
What could go in the "****", or how could I edit this line in conjunction with other elements of the code so that it grabs the DICOMs and nothing else?
Thanks!
-Victoria

답변 (2개)

Walter Roberson
Walter Roberson 2013년 9월 28일
If you are using an OS-X or Linux system, then the file pattern "*" should refuse to match file or directory names that start with "."
  댓글 수: 2
Victoria Klimaj
Victoria Klimaj 2013년 9월 28일
I tried the single '*' but it also didn't work. Maybe the issue is elsewhere in the line...
Victoria Klimaj
Victoria Klimaj 2013년 9월 28일
For some reason the '*' ended up causing errors (error specified code got stuck on ".DS_Store" I ended up adding the word "dicom" to the beginning of each file name with an automator loop and then filtering by that. Strange that the wildcard asterisk matched the files starting with "." when it's not supposed to

댓글을 달려면 로그인하십시오.


Matt J
Matt J 2013년 9월 28일
편집: Matt J 2013년 9월 28일
You might try this FEX submission
I've used it to import images without DCM extensions, although I don't know if they were Unix Executable Files.
  댓글 수: 1
Walter Roberson
Walter Roberson 2013년 9월 29일
"Unix Executable File" is reported for files that have the "x" (execute) permission bit set in any of their basic permission access groups (user, group, other)

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 DICOM Format에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by