myDicomLookup

버전 1.0.5 (2.12 KB) 작성자: vincent caillet
Find attribute within DICOM when you do not know the exact location
다운로드 수: 36
업데이트 날짜: 2018/9/6

라이선스 보기

Helps to find the attribute within a DICOM when you do not know exactly where it is located within the dicom. This code will loop through every single structure until it finds the attribute within a structure fieldname.

Download the code, get your dicom and run the following two lines:

>> YourDicomInfo = dicominfo('YourDicom.dcm');
>> myDicomLookup(YourDicomInfo,'DoseRate');

Matlab will show the following:
----
Found it!
Results for DoseRateSet is 600

Work your way back from the last word below up to here
DoseRateSet
...\Item_1
...\ControlPointSequence
...\Item_1
...\BeamSequence

If you are looking for the patient's name, and just type 'name', it will come up with the physician's name because this is the first results it gets. You would need to type exactly "Patientname".

인용 양식

vincent caillet (2024). myDicomLookup (https://www.mathworks.com/matlabcentral/fileexchange/68705-mydicomlookup), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2018a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 DICOM Format에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.5

Added some more notes

1.0.3

Correct an error where the field value is a matrice

1.0.2

notes

1.0.1

added some notes

1.0.0