Extrapolating an image to give different resolution
7 次查看(过去 30 天)
显示 更早的评论
How do you extrapolate an image to give different resolution?
I am currently working on a MRI image and I need to create different mesh size from the image but I dont know how to extrapolate the image to create a final image with .333 mm/pixel or 0.476mm.pixel.
Any suggestion(s) would be helpful.
0 个评论
采纳的回答
Jan
2011-12-12
Instead of INTERP2 I'd prefer imresize(Img, [nROWS, nCOLS], 'lanczos3').
But to be exact: Every resizing add artifacts to the image. Of course it is necessary for some cases, e.g. an automatic comparison. But if anybody uses the method for cinical decision making keep in mind, that the results must be compared visually again using the original resolution. Do never, never, never plan a surgical operation, because the patient has a Moiree pattern!
I'm not joking. A lot of healthy legs and arms have been amputated due to missinterpreted images.
更多回答(1 个)
Sean de Wolski
2011-12-12
doc interp2 %slicewise
doc interp3 %volumewise
Places to start.
3 个评论
Sean de Wolski
2011-12-12
Well what did you try? Please post the full code and any error messages you encountered. Also, did you try IMRESIZE per Jan's suggestion?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!