why I have Nan value in resampling image?

4 visualizaciones (últimos 30 días)
bkshn
bkshn el 6 de Dic. de 2013
Respondida: Alex Taylor el 7 de Dic. de 2013
Hello
I use a resampling on an image like below
NI = imresample([0.5,0.5],I,[1,1],'linear');
my first image (I) size was 375*500 and my resampled image (NI) size is 188*250.
the value of NI(188,255) is NAN.
Could you explain me why it happens?

Respuestas (3)

Image Analyst
Image Analyst el 6 de Dic. de 2013
I don't know. That function is not in MATLAB or the Image Processing Toolbox. Is that this File Exchange submission? Actually I'm surprised you can even access the 255th column when your image has only 250 columns - you should have gotten an index out of range error. NI(188,255) should not even exist if you resized to 188*250! So either dive into it yourself with the debugger or contact the author. Or better yet, if you have the Image Processing Toolbox, just use imresize() instead.

Alex Taylor
Alex Taylor el 6 de Dic. de 2013
This is the second post I've seen recently on imresample. Is the reason you are using this function that you don't have the Image Processing Toolbox? You should use imresize if you have access to it.
  2 comentarios
bkshn
bkshn el 6 de Dic. de 2013
I found this function (imresample) in File Exchange submission. I want to resample my image not resize my image. it is why I emphasize using resampling.
Image Analyst
Image Analyst el 6 de Dic. de 2013
Editada: Image Analyst el 6 de Dic. de 2013
Explain what you think the difference is. Either way (at least to me) you have an output image, which may or may not be the same size as the input image, comprised of values taken from an input image, which may or may not land exactly at the location of input pixels. What does it mean to you ? How are they different to you ?

Iniciar sesión para comentar.


Alex Taylor
Alex Taylor el 7 de Dic. de 2013
Imresize, like all geometric transformation operations, uses resampling to define output values that do not lie at integral pixel values in the input image.
Imresample is just another version of an image resizing function. It appears to have numerics issues at the edges, which is why we are advising you to use imresize.

Categorías

Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by