-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathtest_affine.py
More file actions
289 lines (264 loc) · 11.6 KB
/
test_affine.py
File metadata and controls
289 lines (264 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
# 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
import torch
from parameterized import parameterized
from monai.data import MetaTensor, set_track_meta
from monai.transforms import Affine, Resize
from monai.transforms.lazy.functional import apply_pending
from monai.utils import optional_import
from tests.lazy_transforms_utils import test_resampler_lazy
from tests.test_utils import TEST_NDARRAYS_ALL, assert_allclose, test_local_inversion
TESTS = []
for p in TEST_NDARRAYS_ALL:
for device in [None, "cpu", "cuda"] if torch.cuda.is_available() else [None, "cpu"]:
TESTS.append(
[
dict(padding_mode="zeros", device=device),
{"img": p(np.arange(9).reshape((1, 3, 3))), "spatial_size": (-1, 0)},
p(np.arange(9).reshape(1, 3, 3)),
]
)
TESTS.append(
[
dict(padding_mode="zeros", device=device, image_only=True),
{"img": p(np.arange(9).reshape((1, 3, 3))), "spatial_size": (-1, 0)},
p(np.arange(9).reshape(1, 3, 3)),
]
)
TESTS.append(
[
dict(padding_mode="zeros", device=device),
{"img": p(np.arange(4).reshape((1, 2, 2)))},
p(np.arange(4).reshape(1, 2, 2)),
]
)
TESTS.append(
[
dict(padding_mode="zeros", device=device),
{"img": p(np.arange(4).reshape((1, 2, 2))), "spatial_size": (4, 4)},
p(np.array([[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 1.0, 0.0], [0.0, 2.0, 3.0, 0.0], [0.0, 0.0, 0.0, 0.0]]])),
]
)
TESTS.append(
[
dict(rotate_params=[np.pi / 2], padding_mode="zeros", device=device),
{"img": p(np.arange(4).reshape((1, 2, 2))), "spatial_size": (4, 4)},
p(np.array([[[0.0, 0.0, 0.0, 0.0], [0.0, 2.0, 0.0, 0.0], [0.0, 3.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0]]])),
]
)
TESTS.append(
[
dict(rotate_params=[np.pi / 2], padding_mode="zeros", device=device, align_corners=False),
{"img": p(np.arange(4).reshape((1, 2, 2))), "spatial_size": (4, 4)},
p(np.array([[[0.0, 0.0, 0.0, 0.0], [0.0, 2.0, 0.0, 0.0], [0.0, 3.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0]]])),
]
)
TESTS.append(
[
dict(
affine=p(torch.tensor([[0.0, -1.0, 0.0], [1.0, 0.0, 0.0], [0.0, 0.0, 1.0]])),
padding_mode="zeros",
device=device,
),
{"img": p(np.arange(4).reshape((1, 2, 2))), "spatial_size": (4, 4)},
p(np.array([[[0.0, 0.0, 0.0, 0.0], [0.0, 2.0, 0.0, 0.0], [0.0, 3.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0]]])),
]
)
TESTS.append(
[
dict(padding_mode="zeros", device=device),
{"img": p(np.arange(27).reshape((1, 3, 3, 3))), "spatial_size": (-1, 0, 0)},
p(np.arange(27).reshape(1, 3, 3, 3)),
]
)
TESTS.append(
[
dict(padding_mode="zeros", device=device),
{"img": p(np.arange(8).reshape((1, 2, 2, 2))), "spatial_size": (4, 4, 4)},
p(
np.array(
[
[
[
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
],
[
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 1.0, 0.0],
[0.0, 2.0, 3.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
],
[
[0.0, 0.0, 0.0, 0.0],
[0.0, 4.0, 5.0, 0.0],
[0.0, 6.0, 7.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
],
[
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
],
]
]
)
),
]
)
TESTS.append(
[
dict(rotate_params=[np.pi / 2], padding_mode="zeros", device=device),
{"img": p(np.arange(8).reshape((1, 2, 2, 2))), "spatial_size": (4, 4, 4)},
p(
np.array(
[
[
[
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
],
[
[0.0, 0.0, 0.0, 0.0],
[0.0, 2.0, 0.0, 0.0],
[0.0, 3.0, 1.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
],
[
[0.0, 0.0, 0.0, 0.0],
[0.0, 6.0, 4.0, 0.0],
[0.0, 7.0, 5.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
],
[
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
[0.0, 0.0, 0.0, 0.0],
],
]
]
)
),
]
)
class TestAffine(unittest.TestCase):
@parameterized.expand(TESTS)
def test_affine(self, input_param, input_data, expected_val):
input_copy = deepcopy(input_data["img"])
g = Affine(**input_param)
result = g(**input_data)
output_idx = None
if isinstance(result, tuple):
output_idx = 0
result = result[output_idx]
test_local_inversion(g, result, input_copy)
assert_allclose(result, expected_val, rtol=1e-4, atol=1e-4, type_test=False)
set_track_meta(False)
result = g(**input_data)
if isinstance(result, tuple):
result = result[0]
self.assertNotIsInstance(result, MetaTensor)
self.assertIsInstance(result, torch.Tensor)
set_track_meta(True)
# test lazy
lazy_input_param = input_param.copy()
for align_corners in [True, False]:
lazy_input_param["align_corners"] = align_corners
resampler = Affine(**lazy_input_param)
non_lazy_result = resampler(**input_data)
test_resampler_lazy(
resampler, non_lazy_result, lazy_input_param, input_data, output_idx=output_idx, rtol=1e-3, atol=1e-3
)
class TestComputeWAffine(unittest.TestCase):
def test_identity_2d(self):
"""Identity matrix with same input/output size should produce pure translation to/from center."""
mat = np.eye(3)
img_size = (4, 4)
sp_size = (4, 4)
result = Affine.compute_w_affine(2, mat, img_size, sp_size)
# For identity transform with same sizes, result should be identity
assert_allclose(result, np.eye(3), atol=1e-6)
def test_identity_3d(self):
"""Identity matrix in 3D with same input/output size."""
mat = np.eye(4)
img_size = (6, 6, 6)
sp_size = (6, 6, 6)
result = Affine.compute_w_affine(3, mat, img_size, sp_size)
assert_allclose(result, np.eye(4), atol=1e-6)
def test_different_sizes(self):
"""When img_size != sp_size, result should include net translation."""
mat = np.eye(3)
img_size = (4, 4)
sp_size = (8, 8)
result = Affine.compute_w_affine(2, mat, img_size, sp_size)
# Translation should account for the shift: (4-1)/2 - (8-1)/2 = 1.5 - 3.5 = -2.0
expected_translation = np.array([(d1 - 1) / 2 - (d2 - 1) / 2 for d1, d2 in zip(img_size, sp_size)])
assert_allclose(result[:2, 2], expected_translation, atol=1e-6)
def test_output_shape(self):
"""Output should be (r+1) x (r+1) matrix."""
for r in [2, 3]:
mat = np.eye(r + 1)
result = Affine.compute_w_affine(r, mat, (4,) * r, (4,) * r)
self.assertEqual(result.shape, (r + 1, r + 1))
def test_torch_input(self):
"""Method should accept torch tensor input."""
mat = torch.eye(3)
result = Affine.compute_w_affine(2, mat, (4, 4), (4, 4))
assert_allclose(result, np.eye(3), atol=1e-6)
@unittest.skipUnless(optional_import("scipy")[1], "Requires scipy library.")
class TestAffineConsistency(unittest.TestCase):
@parameterized.expand([[7], [8], [9]])
def test_affine_resize(self, s):
"""s"""
im = np.arange(4).reshape(1, 2, 2).astype(float)
mat = np.array([[1 / s, 0, 0], [0, 1 / s, 0], [0, 0, 1]])
sp_size = 2 * s
def method_0(im, ac):
xform = Affine(align_corners=ac, affine=mat, image_only=True, spatial_size=sp_size)
xform.lazy = True
out = xform(im)
overrides = {"padding_mode": "border", "align_corners": ac}
out = apply_pending(out, overrides=overrides)[0]
return out
def method_1(im, ac):
xform = Affine(align_corners=ac, affine=mat, image_only=True, spatial_size=sp_size)
xform.lazy = True
out = xform(im)
overrides = {"mode": 1, "padding_mode": "nearest", "align_corners": ac}
out = apply_pending(out, overrides=overrides)[0]
return out
def method_2(im, ac):
xform = Affine(align_corners=ac, affine=mat, padding_mode="border", image_only=True, spatial_size=sp_size)
out = xform(im)
return out
def method_3(im, ac):
xform = Affine(
align_corners=ac, affine=mat, mode=1, padding_mode="nearest", image_only=True, spatial_size=sp_size
)
out = xform(im)
return out
for call in (method_0, method_1, method_2, method_3):
for ac in (False, True):
out = call(im, ac)
ref = Resize(align_corners=ac, spatial_size=(sp_size, sp_size), mode="bilinear")(im)
assert_allclose(out, ref, rtol=1e-4, atol=1e-4, type_test=False)
if __name__ == "__main__":
unittest.main()