selective bwdist()

9 Ansichten (letzte 30 Tage)
leila
leila am 13 Dez. 2011
Kommentiert: Carl Blackberg am 9 Aug. 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 Kommentare
Sven
Sven am 13 Dez. 2011
Bearbeitet: Image Analyst am 3 Okt. 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 am 13 Dez. 2011
Bearbeitet: Image Analyst am 3 Okt. 2013
How conveniently timed on Steve's part!

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Alex Taylor
Alex Taylor am 14 Dez. 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 am 14 Dez. 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 am 14 Dez. 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