Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add function in monai.transforms.utils.py #7712

Merged
merged 30 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
a78c5a6
Fixes #6704
ytl0623 Apr 25, 2024
4797043
Merge branch 'Project-MONAI:dev' into fix-issue-6704
ytl0623 Apr 27, 2024
f04a29e
Update monai/transforms/utils.py
ytl0623 Apr 27, 2024
7a31661
Add a unittest and modify few codes.
ytl0623 Apr 27, 2024
e66ae71
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Apr 27, 2024
df0f0d0
Merge branch 'Project-MONAI:dev' into fix-issue-6704
ytl0623 May 14, 2024
a06511b
Apply suggestions from code review
ytl0623 May 14, 2024
30d4876
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 14, 2024
535675d
Update monai/transforms/utils.py
ytl0623 May 14, 2024
656f56a
import copy
ytl0623 May 14, 2024
32c888d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 14, 2024
9602d3a
import copy
ytl0623 May 14, 2024
12e5881
remove backup file :")
ytl0623 May 14, 2024
e2641d4
problem solved: Imports are incorrectly sorted and/or formatted.
ytl0623 May 14, 2024
639022c
Reformat utils.py
ytl0623 May 14, 2024
eeae642
solve utils.py line: 388 too long.
ytl0623 May 14, 2024
8ba5c7e
Solved import error.
ytl0623 May 14, 2024
d3ba184
Add function in _init_.py
ytl0623 May 14, 2024
f1f9a80
Update monai/transforms/utils.py
ytl0623 May 15, 2024
4ec2b64
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 15, 2024
dbc86e4
Reformatted utils.py
ytl0623 May 15, 2024
7a8c7cd
Merge branch 'dev' into fix-issue-6704
ytl0623 May 16, 2024
f599cbe
20240516
ytl0623 May 16, 2024
2259678
Merge branch 'dev' into fix-issue-6704
ytl0623 May 17, 2024
e394797
Merge branch 'dev' into fix-issue-6704
ytl0623 May 17, 2024
943708e
Update utils.py
ytl0623 May 17, 2024
58ea019
Update utils.py
ytl0623 May 17, 2024
317fc06
Fix long line
ytl0623 May 17, 2024
6ba0a04
Merge branch 'dev' into fix-issue-6704
ytl0623 May 17, 2024
53f472b
Merge branch 'dev' into fix-issue-6704
KumoLiu May 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions monai/transforms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,7 @@
in_bounds,
is_empty,
is_positive,
map_and_generate_sampling_centers,
map_binary_to_indices,
map_classes_to_indices,
map_spatial_axes,
Expand Down
65 changes: 65 additions & 0 deletions monai/transforms/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
"in_bounds",
"is_empty",
"is_positive",
"map_and_generate_sampling_centers",
"map_binary_to_indices",
"map_classes_to_indices",
"map_spatial_axes",
Expand Down Expand Up @@ -368,6 +369,70 @@ def check_non_lazy_pending_ops(
warnings.warn(msg)


def map_and_generate_sampling_centers(
ytl0623 marked this conversation as resolved.
Show resolved Hide resolved
label: NdarrayOrTensor,
spatial_size: Sequence[int] | int,
num_samples: int,
label_spatial_shape: Sequence[int],
ytl0623 marked this conversation as resolved.
Show resolved Hide resolved
num_classes: int | None = None,
image: NdarrayOrTensor | None = None,
image_threshold: float = 0.0,
max_samples_per_class: int | None = None,
ratios: list[float | int] | None = None,
rand_state: np.random.RandomState | None = None,
allow_smaller: bool = False,
warn: bool = True,
) -> tuple[tuple]:
"""
Combine "map_classes_to_indices" and "generate_label_classes_crop_centers" functions, return crop center coordinates.
ytl0623 marked this conversation as resolved.
Show resolved Hide resolved
Call "map_classes_to_indices" if indices is None, pull the shape from the label or image (if label is None),
and then call "generate_label_classes_crop_centers".
ytl0623 marked this conversation as resolved.
Show resolved Hide resolved

Args:
label: use the label data to get the indices of every class.
spatial_size: spatial size of the ROIs to be sampled.
num_samples: total sample centers to be generated.
label_spatial_shape: spatial shape of the original label data to unravel selected centers.
indices: sequence of pre-computed foreground indices of every class in 1 dimension.
num_classes: number of classes for argmax label, not necessary for One-Hot label.
image: if image is not None, only return the indices of every class that are within the valid
region of the image (``image > image_threshold``).
image_threshold: if enabled `image`, use ``image > image_threshold`` to
determine the valid image content area and select class indices only in this area.
max_samples_per_class: maximum length of indices in each class to reduce memory consumption.
Default is None, no subsampling.
ratios: ratios of every class in the label to generate crop centers, including background class.
if None, every class will have the same ratio to generate crop centers.
rand_state: numpy randomState object to align with other modules.
allow_smaller: if `False`, an exception will be raised if the image is smaller than
the requested ROI in any dimension. If `True`, any smaller dimensions will be set to
match the cropped size (i.e., no cropping in that dimension).
warn: if `True` prints a warning if a class is not present in the label.
Returns:
Tuple of crop centres
"""
if label is None:
raise ValueError("label must not be None.")
indices = map_classes_to_indices(label, num_classes, image, image_threshold, max_samples_per_class)

if label_spatial_shape is not None:
_shape = label_spatial_shape
elif isinstance(label, monai.data.MetaTensor):
_shape = label.peek_pending_shape()
else:
_shape = label.shape[1:]

if _shape is None:
raise ValueError(
"label_spatial_shape or label with a known shape must be provided to infer the output spatial shape."
)
centers = generate_label_classes_crop_centers(
spatial_size, num_samples, _shape, indices, ratios, rand_state, allow_smaller, warn
)

return ensure_tuple(centers)


def map_binary_to_indices(
label: NdarrayOrTensor, image: NdarrayOrTensor | None = None, image_threshold: float = 0.0
) -> tuple[NdarrayOrTensor, NdarrayOrTensor]:
Expand Down
87 changes: 87 additions & 0 deletions tests/test_map_and_generate_sampling_centers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
# Copyright (c) MONAI Consortium
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import annotations

import unittest
from copy import deepcopy

import numpy as np
from parameterized import parameterized

from monai.transforms import map_and_generate_sampling_centers
from monai.utils.misc import set_determinism
from tests.utils import TEST_NDARRAYS, assert_allclose

TEST_CASE_1 = [
# test Argmax data
{
"label": (np.array([[[0, 1, 2], [2, 0, 1], [1, 2, 0]]])),
"spatial_size": [2, 2, 2],
"num_samples": 2,
"label_spatial_shape": [3, 3, 3],
"num_classes": 3,
"image": None,
"ratios": [0, 1, 2],
"image_threshold": 0.0,
},
tuple,
2,
3,
]

TEST_CASE_2 = [
{
"label": (
np.array(
[
[[1, 0, 0], [0, 1, 0], [0, 0, 1]],
[[0, 1, 0], [0, 0, 1], [1, 0, 0]],
[[0, 0, 1], [1, 0, 0], [0, 1, 0]],
]
)
),
"spatial_size": [2, 2, 2],
"num_samples": 1,
"ratios": None,
"label_spatial_shape": [3, 3, 3],
"image": None,
"image_threshold": 0.0,
},
tuple,
1,
3,
]


ytl0623 marked this conversation as resolved.
Show resolved Hide resolved
class TestMapAndGenerateSamplingCenters(unittest.TestCase):

@parameterized.expand([TEST_CASE_1, TEST_CASE_2])
def test_map_and_generate_sampling_centers(self, input_data, expected_type, expected_count, expected_shape):
results = []
for p in TEST_NDARRAYS + (None,):
input_data = deepcopy(input_data)
if p is not None:
input_data["label"] = p(input_data["label"])
set_determinism(0)
result = map_and_generate_sampling_centers(**input_data)
self.assertIsInstance(result, expected_type)
self.assertEqual(len(result), expected_count)
self.assertEqual(len(result[0]), expected_shape)
# check for consistency between numpy, torch and torch.cuda
results.append(result)
if len(results) > 1:
for x, y in zip(result[0], result[-1]):
assert_allclose(x, y, type_test=False)


if __name__ == "__main__":
unittest.main()
Loading