How to fuse SPECT and CT images having different matrix sizes?
4 次查看(过去 30 天)
显示 更早的评论
I want to fuse the SPECT: 128*128*102 (slice thickness: 3.8954 mm) dimension matrix with CT: 512*512*263 (slice thickness: 3 mm) dimension matrix.Their number of frames and slicethickness are different. How can I fuse those images in matlab?
Any help would be highly appreciated.
0 个评论
回答(1 个)
Johannes Fischer
2019-9-18
编辑:Johannes Fischer
2019-9-18
You can import the data using dicomreadVolume (https://www.mathworks.com/help/images/ref/dicomreadvolume.html)
There is an introduction on how to register 2D multimodal image data using imregister (https://www.mathworks.com/help/images/registering-multimodal-mri-images.html). imregister also works with 3D volumes so you would probably need to adapt the code a little bit.
You might also be able to use the spatial information that you get from dicomreadVolume
[V, spatial] = dicomreadVolume(source)
and use interp3 to interpolate the data from the SPECT image onto the grid of the CT data. However the second approach only works if both images are taken in the same coordinate system and your patient/object did not move between the exams.
2 个评论
Johannes Fischer
2019-9-18
No, because resizing the SPECT image to the size of the CT image, does not mean, that the data at (1,1,1) in both images represents the same location in space.
If you are only interested in visualizing the fused data, try this contribution of the file exchange (https://www.mathworks.com/matlabcentral/fileexchange/53745-medical-image-reader-and-viewer). Im not sure whether this function also allows the ouput of both images in a matrices of the same size.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!