Stream: helpdesk (published)

Topic: `distance_transform` from ImageMorphology?


view this post on Zulip Dale Black (Jun 26 2021 at 21:37):

Is there any creative workaround to compute the distance transform of an array without using the feature_transform function from ImageMorphology.jl? The only way I see it work is by

A=rand(Bool, 500, 500)
B=feature_transform(A)
C=distance_transform(B)

But the feature_transform function is much more time consuming so I am trying to avoid it if at all possible


Last updated: Oct 02 2023 at 04:34 UTC