Signed distance map or Distance transform map in MONAI #4603
Replies: 2 comments 1 reply
-
@masadcv just release FastGeodis, a package to compute Geodesic and Euclidean distance maps in PyTorch. It does not (yet?) feature signed distance maps but you can always compute two distance maps (one with the mask and another one with the inverted mask) and substract these. There is also a related issue in MONAI: #1332 And now a feature request in FastGeodis: masadcv/FastGeodis#9 |
Beta Was this translation helpful? Give feedback.
-
We plan to have an equivalent of SciPy's in progress PR: rapidsai/cucim#318 We will also look at the signed distance transform as we want to provide a GPU equivalent to ITK's SignedMaurerDistanceMapImageFilter. The plan is to compute this by subtracting the output of two calls as discussed above. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Thanks for the great job.
I would like to use signed distance map or distance transform map in my 3D
medical image segmentation task. I wonder if there is an implementation in MONAI to transform a 3D mask to signed distance map?
Beta Was this translation helpful? Give feedback.
All reactions