selective bwdist()

9 visualizaciones (últimos 30 días)
leila
leila el 13 de Dic. de 2011
Comentada: Carl Blackberg el 9 de Ag. de 2020
I have a binary 3D image that consists of a 3D object with "1"-valued pixels and background with "0"-valued pixels. I want to compute the euclidean distance of "some" background pixels to the object.
I found that the MATLAB function bwdist() can compute the distance of "all" of the background pixels to the nearest object pixel for each point.
Is there any MATLAB function or other way to compute the distance of an small subset of background pixels to the nearest non-zero pixel efficiently?
Your help is greatly appreciated.
  2 comentarios
Sven
Sven el 13 de Dic. de 2011
Editada: Image Analyst el 3 de Oct. de 2013
Which version of MATLAB do you have? In 2011b, there was an update which might help you quite a bit:
Sean de Wolski
Sean de Wolski el 13 de Dic. de 2011
Editada: Image Analyst el 3 de Oct. de 2013
How conveniently timed on Steve's part!

Iniciar sesión para comentar.

Respuestas (3)

Alex Taylor
Alex Taylor el 14 de Dic. de 2011
You all have seen Steve's blog post, so you know the answer. But, for anyone who comes to this post with a similar question, we added two new functions to the Image Processing Toolbox for calculating constrained distance problems in R2011b.
These functions solve the geodesic distance and gray-weighted distance transforms.

Image Analyst
Image Analyst el 14 de Dic. de 2011
How about just using Pythagorean theorem? If you know the coordinates of all the pixels in your 3D binary object (which you can find out), then just calculate it. If you have one reference point, and say a million other points, it's just a million calculations - shouldn't take too long though I'm not sure whether it will be faster or slower than bwdist.

leila
leila el 14 de Dic. de 2011
Thanks all for your help, Unfortunately I found that the aspect ratio of the image pixels is not [1:1:1],I guess that the bwdist() and bwdistgeodesic() do not support this case. Is there any way to solve this problem?

Community Treasure Hunt

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

Start Hunting!

Translated by