From 112e431b4a16b8c123d4b751b8386465d6154e31 Mon Sep 17 00:00:00 2001 From: Matthias Hadlich Date: Sat, 7 Oct 2023 17:49:46 +0200 Subject: [PATCH] Add distance_transform_edt to transforms.__init__ (#7100) Forgot the import of the helper function `distance_transform_edt` in `transforms.__init__` ### Types of changes - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. Signed-off-by: Matthias Hadlich --- monai/transforms/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/monai/transforms/__init__.py b/monai/transforms/__init__.py index 97644843ff..2aa8fbf8a1 100644 --- a/monai/transforms/__init__.py +++ b/monai/transforms/__init__.py @@ -641,6 +641,7 @@ create_scale, create_shear, create_translate, + distance_transform_edt, equalize_hist, extreme_points_to_image, generate_label_classes_crop_centers,