Extrapolating an image to give different resolution

조회 수: 6 (최근 30일)
David Dijemeni
David Dijemeni 2011년 12월 12일
편집: Matt J 2013년 10월 25일
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.

채택된 답변

Jan
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
David Dijemeni
David Dijemeni 2012년 2월 25일
Ur method works but it does not preserve the edges of the image well. So I have developed a simple interpolation function to do it for me but my result is slightly less accurate.

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

추가 답변 (1개)

Sean de Wolski
Sean de Wolski 2011년 12월 12일
doc interp2 %slicewise
doc interp3 %volumewise
Places to start.
  댓글 수: 3
Walter Roberson
Walter Roberson 2011년 12월 12일
What is size() and class() of your image?
Sean de Wolski
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 CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by