Zooming and interpolating medical images
조회 수: 7 (최근 30일)
이전 댓글 표시
Hello,
This question is for someone with experience in displaying medical images (i.e., DICOMS).
Many DICOM viewers perform some interpolations on the images before displaying them. This prevents the displayed images from looking overly pixelated. Does anyone know what kind of interpolations are generally used for DICOM viewers (e.g., linear, cubic, spline, etc...)?
Is there MATLAB support for implementing any of these interpolation schemes when displaying images using imtool or imshow?
Thanks, Justin
댓글 수: 0
채택된 답변
John Crane
2013년 4월 21일
interp() (and variants) seems to work fine for what you are talking about. Many medical imaging applications like cubic spline, bi-cubic, but all the popular methods are used really. Generally, radiologists prefer the utmost Lossless methods that are possible. 1st of all, the possibility of any artifacts will (and should) automatically disqualify a method. In medical imaging we would rather see a low resolution illustration, including low SNR or even machine artifact included if that is the case, rather than the possibility of any artificial influence of an algorithm onto the data. You must be careful while we still have scanners at low resolutions (as compared to other technology). You can have an influence that shows in only 1 pixel or voxel on the acquired data, and, that thing will turn into a seemingly large "significant" area by over-interpolating.
imtool is not the most efficient way to observe images. I would suggest imshow() or similar methods in Matlab, with your own optimization.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 DICOM Format에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!