필터 지우기
필터 지우기

How to Open RT Struct

조회 수: 13 (최근 30일)
mohd akmal masud
mohd akmal masud 2023년 2월 21일
편집: Simon Chan 2023년 2월 22일
Hi Everyone,
Anyone can help me to open and view the image of my RT Struct file as attached.
Thank yo so much.

채택된 답변

Simon Chan
Simon Chan 2023년 2월 21일
편집: Simon Chan 2023년 2월 21일
Use function dicomContours
The Modality Attribute showing 'NM' and hence the attached files are NM dicom images only.
So you are not able to open any RT structures since it is not a RT structure file.
  댓글 수: 2
mohd akmal masud
mohd akmal masud 2023년 2월 21일
HOW ABOUT THIS ATTCHED FILE SIR? IS IT CORRECT FILE RT STRUCT?
Simon Chan
Simon Chan 2023년 2월 22일
편집: Simon Chan 2023년 2월 22일
Your attached zip file has 5 folders, and you may guess what type of data was inside each folder from its folder name. Provided the naming is correct, the folder name contains the word "....._RTst_....." has the DICOM RT structre file inside.
Then, you can use function dicominfo, dicomContours and plotContor to retrieve the RT structure information from the DICOM file. The following one shows the result from one of the DICOM RT Structure file.
On the other hand, you may also use function dicomlookup to check the Modalty Attribute in order to make sure the file is a DICOM RT Structure file.
filename = unzip('2.16.840.1.114362.1.11854208.23879450333.559219930.834.zip');
info = dicominfo(filename{1});
info.(dicomlookup('0008', '0060')) % Check the Modality Attribute
ans = 'RTSTRUCT'
contour = dicomContours(info);
plotContour(contour)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Read and Write Image Data from Files에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by