how to fuse Image CT and SPECT

조회 수: 5 (최근 30일)
mohd akmal masud
mohd akmal masud 2022년 2월 15일
답변: Shubham 2024년 1월 22일
Hi all
I have Image CT (as attached) and Image SPECT (as attached)
Anyone can help me how to fusing it?

답변 (1개)

Shubham
Shubham 2024년 1월 22일
Hey Mohd Akmal Masud,
It seems that you are trying to fuse a CT Image and a SPECT image, with both images being in the DICOM format.
You can read data from a DICOM file using “dicomread” function. Please refer to the following code snippet:
% Read CT DICOM file
ctFile = 'CT.dcm';
ctInfo = dicominfo(ctFile); % For getting metadata
ctImage= dicomread(ctFile); % For reading DICOM image
If the file is not located in the current working directory, please include the complete file path. In the same manner, read the DICOM file for the SPECT image. You can also use the Medical Image Reader and Viewertoolbox available on File Exchange for handling DICOM images:
Before merging the images, perform image registration and resampling to make sure that the images share the same orientation and resolution. Please refer to the following MATLAB Answer, if SPECT and CT images have different matrix size:
Use the "imfuse" function included in the MATLAB documentation to fuse two images. Please have a look at the following MATLAB Answer for combining two images:
I hope this helps.

카테고리

Help CenterFile Exchange에서 Explore and Edit Images with Image Viewer App에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by