필터 지우기
필터 지우기

Burned in annotations Dicom

조회 수: 6 (최근 30일)
Isabel
Isabel 2015년 12월 14일
댓글: Isabel 2016년 2월 8일
Hi,
I have some manual burned in annotations in Dicom file of a lung HRCT scan. I need to extract the information of the annotations, thus, I need to know i.e. where exactly the annotations are located in order to identify that region in the raw Dicom file. I need to use this annotations to train a classifier, but I don't know how to do it. Can anyone help me?
Thank you in advance!

답변 (2개)

sam0037
sam0037 2015년 12월 22일
I understand that you want to extract manual burned in annotations from a DICOM file and by annotations you mean the METADATA of the corresponding DICOM file. If you wish to extract the METADATA from a DICOM file, you can use DICOMINFO or DICOMDISP function from the Image Processing Toolbox.
Refer to the following MATLAB Documentation links to know more about 'Reading METADATA from DICOM Files', DICOMDISP function and DICOMINFO function respectively:
  댓글 수: 5
Walter Roberson
Walter Roberson 2016년 1월 29일
Is there anything else in the image that is the same color?
Isabel
Isabel 2016년 2월 8일
no, the rest of the image is in black and white.

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


Walter Roberson
Walter Roberson 2016년 2월 8일
text_mask = Blue_channel > threshold1 & Red_channel < threshold2
For some small threshold2 (the black level) and larger threshold1 (the level of the blue)
The blue test finds the blue but also finds white. The red test rejects the white (white is near equal on all three channels)
You can now feed the mask itself to an ocr routine to extract the text.
  댓글 수: 1
Isabel
Isabel 2016년 2월 8일
Thanks Walter, I will try that.

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

카테고리

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