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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374 | class RigidRegistration(AbstractRegistration):
"""Rigid registration class for 2D and 3D image registration.
Note about initialization and optimization:
- All initializations assume the format y = Rx + t (rigid, affine, moments)
- However, optimization works better with the format y = R(x-c) + c + t' (where c is the center of the image)
- therefore, we need to compute t' = t - c + Ac as the learnable parameter if `around_center=True`
This class implements rigid registration (rotation and translation) with optional anisotropic scaling.
The transformation is parameterized using:
- Rotation: 2D uses a single angle; 3D uses a unit quaternion (w,x,y,z)
- Translation: Direct parameterization in physical space
- Scaling (optional): Log-scale parameters for each dimension
Args:
scales (List[float]): Downsampling factors for multi-resolution optimization
Must be in descending order (e.g. [4,2,1]).
iterations (List[int]): Number of iterations at each scale
Must match length of scales.
fixed_images (BatchedImages): Fixed/reference images
moving_images (BatchedImages): Moving images to be registered
loss_type (str, optional): Similarity metric ('cc', 'mi', 'mse', 'custom', 'noop'). Default: 'cc'
optimizer (str, optional): Optimization algorithm ('Adam' or 'SGD'). Default: 'Adam'
optimizer_params (dict, optional): Additional parameters for optimizer. Default: {}
optimizer_lr (float, optional): Learning rate for optimizer. Default: 3e-3
loss_params (dict, optional): Additional parameters for loss function. Default: {}
mi_kernel_type (str, optional): Kernel type for MI loss. Default: 'b-spline'
cc_kernel_type (str, optional): Kernel type for CC loss. Default: 'rectangular'
tolerance (float, optional): Convergence tolerance. Default: 1e-6
max_tolerance_iters (int, optional): Max iterations for convergence. Default: 10
cc_kernel_size (int, optional): Kernel size for CC loss. Default: 3
init_translation (Optional[Union[torch.Tensor, str]], optional): Initial translation. If a tensor, used
directly; if the string "cof", set to c_m - c_f (center of moving minus center of fixed in physical space).
Default: None
init_moment (Optional[torch.Tensor], optional): Initial rotation moment. Default: None
scaling (bool, optional): Whether to optimize scaling parameters. Default: False
custom_loss (nn.Module, optional): Custom loss module. Default: None
blur (bool, optional): Whether to apply Gaussian blur during downsampling. Default: True
Attributes:
rotation (nn.Parameter): Rotation parameters (2D: angle; 3D: quaternion w,x,y,z)
transl (nn.Parameter): Translation parameters
logscale (nn.Parameter): Log-scale parameters (if scaling=True)
moment (torch.Tensor): Current rotation moment matrix
optimizer: Optimizer instance (Adam or SGD)
"""
def __init__(self, scales: List[float], iterations: List[int],
fixed_images: BatchedImages, moving_images: BatchedImages,
loss_type: str = "cc",
optimizer: str = 'Adam', optimizer_params: dict = {},
optimizer_lr: float = 3e-2,
loss_params: dict = {},
mi_kernel_type: str = 'gaussian', cc_kernel_type: str = 'rectangular',
tolerance: float = 1e-6, max_tolerance_iters: int = 10,
cc_kernel_size: int = 3,
init_translation: Optional[Union[torch.Tensor, str]] = None,
init_moment: Optional[torch.Tensor] = None,
scaling: bool = False,
custom_loss: nn.Module = None,
around_center: bool = True,
blur: bool = True, **kwargs
) -> None:
super().__init__(scales=scales, iterations=iterations, fixed_images=fixed_images, moving_images=moving_images,
loss_type=loss_type, mi_kernel_type=mi_kernel_type, cc_kernel_type=cc_kernel_type, custom_loss=custom_loss,
loss_params=loss_params,
cc_kernel_size=cc_kernel_size,
tolerance=tolerance, max_tolerance_iters=max_tolerance_iters, **kwargs)
# initialize transform
device = fixed_images.device
self.dims = dims = self.moving_images.dims
# 2D: one angle; 3D: quaternion (w,x,y,z)
self.rotation_dims = rotation_dims = (1 if dims == 2 else 4)
if dims == 2:
self.rotation = nn.Parameter(torch.zeros((self.opt_size, 1), device=device, dtype=self.dtype)) # [N, 1] angle
else:
# identity quaternion (w,x,y,z) = (1,0,0,0)
quat_init = torch.zeros((self.opt_size, 4), device=device, dtype=self.dtype)
quat_init[:, 0] = 1.0
self.rotation = nn.Parameter(quat_init) # [N, 4]
# set init moment
if init_moment is not None:
self.moment = init_moment.to(device)
else:
self.moment = torch.eye(dims, device=device).unsqueeze(0).repeat(self.opt_size, 1, 1)
# parameters for centering translation
self.around_center = around_center
self.center = self.fixed_images.get_torch2phy()[:, :self.dims, -1].detach().contiguous() # [N, D]
self.center = self.center.to(device)
# introduce some scaling parameter
self.scaling = scaling
if self.scaling:
self.logscale = nn.Parameter(torch.zeros((self.opt_size, fixed_images.dims), device=device, dtype=self.dtype))
else:
self.logscale = torch.zeros((self.opt_size, fixed_images.dims), device=device, dtype=self.dtype)
self.blur = blur
# first three params are so(n) variables, last three are translation
if init_translation is not None:
if isinstance(init_translation, torch.Tensor):
transl = init_translation.to(device) # [N, D]
elif init_translation == "cof":
# Center of frame: init translation = c_m - c_f (same as moments.py transl_mode="cof")
c_f = self.fixed_images.get_torch2phy()[:, :self.dims, -1].detach().contiguous()
c_m = self.moving_images.get_torch2phy()[:, :self.dims, -1].detach().contiguous()
transl = (c_m - c_f).to(device) # [N, D]
else:
raise ValueError(f"init_translation must be a tensor or 'cof', got {init_translation}")
else:
transl = torch.zeros((self.opt_size, fixed_images.dims)).to(device) # [N, D]
# recalibrate the translation parameter (t --> t') if around_center is True
if self.around_center:
scale = torch.exp(self.logscale)[..., None] # [N, D, 1]
rigid = scale * self.get_rotation_matrix()[:, :-1, :-1] # [N, D, D]
transl = transl - self.center + (rigid @ self.center[..., None]).squeeze(-1)
transl = transl.detach().contiguous()
self.transl = nn.Parameter(transl.to(device)) # [N, D]
# optimizer
params = [self.rotation, self.transl]
if scaling:
params.append(self.logscale)
if optimizer.lower() == 'sgd':
self.optimizer = SGD(params, lr=optimizer_lr, **optimizer_params)
elif optimizer.lower() == 'adam':
self.optimizer = Adam(params, lr=optimizer_lr, **optimizer_params)
else:
raise ValueError(f"Optimizer {optimizer} not supported")
def get_rotation_matrix(self):
"""Compute the rotation matrix from rotation parameters.
For 2D: Uses direct angle parameterization.
For 3D: Uses unit quaternion (w,x,y,z); parameters are normalized to unit length.
Returns:
torch.Tensor: Batch of rotation matrices [N, dim+1, dim+1]
"""
if self.dims == 2:
rotmat = torch.zeros((self.opt_size, 3, 3), device=self.rotation.device, dtype=self.dtype)
rotmat[:, 2, 2] = 1
cos, sin = torch.cos(self.rotation[:, 0]), torch.sin(self.rotation[:, 0])
rotmat[:, 0, 0] = cos
rotmat[:, 0, 1] = -sin
rotmat[:, 1, 0] = sin
rotmat[:, 1, 1] = cos
elif self.dims == 3:
# Quaternion (w,x,y,z) -> rotation matrix; normalize to unit quaternion
q = self.rotation # [N, 4]
q_norm = torch.norm(q, dim=-1, keepdim=True).clamp(min=1e-8)
w, x, y, z = (q[:, 0] / q_norm.squeeze(-1),
q[:, 1] / q_norm.squeeze(-1),
q[:, 2] / q_norm.squeeze(-1),
q[:, 3] / q_norm.squeeze(-1))
rotmat = torch.zeros((self.opt_size, 4, 4), device=self.rotation.device, dtype=self.dtype)
rotmat[:, 0, 0] = 1 - 2 * (y * y + z * z)
rotmat[:, 0, 1] = 2 * (x * y - w * z)
rotmat[:, 0, 2] = 2 * (x * z + w * y)
rotmat[:, 1, 0] = 2 * (x * y + w * z)
rotmat[:, 1, 1] = 1 - 2 * (x * x + z * z)
rotmat[:, 1, 2] = 2 * (y * z - w * x)
rotmat[:, 2, 0] = 2 * (x * z - w * y)
rotmat[:, 2, 1] = 2 * (y * z + w * x)
rotmat[:, 2, 2] = 1 - 2 * (x * x + y * y)
rotmat[:, 3, 3] = 1
else:
raise ValueError(f"Dimensions {self.dims} not supported")
# premulitply by moment
rotmat[:, :self.dims, :self.dims] = rotmat[:, :self.dims, :self.dims] @ self.moment
rotmat = rotmat.to(self.rotation.device, self.rotation.dtype)
return rotmat
def save_as_ants_transforms(self, filenames: Union[str, List[str]]):
'''
Save the registration as ANTs transforms (.mat file)
'''
if isinstance(filenames, str):
filenames = [filenames]
affine = self.get_rigid_matrix(homogenous=False) # [N, dim, dim+1]
n = affine.shape[0]
check_and_raise_cond(len(filenames)==1 or len(filenames)==n, "Number of filenames must match the number of transforms")
check_and_raise_cond(check_correct_ext(filenames, PERMITTED_ANTS_TXT_EXT + PERMITTED_ANTS_MAT_EXT), "File extension must be one of {}".format(PERMITTED_ANTS_TXT_EXT + PERMITTED_ANTS_MAT_EXT))
filenames = augment_filenames(filenames, n, PERMITTED_ANTS_TXT_EXT + PERMITTED_ANTS_MAT_EXT)
for i in range(affine.shape[0]):
mat = affine[i].detach().cpu().numpy().astype(np.float32)
A = mat[:self.dims, :self.dims]
t = mat[:self.dims, -1]
if any_extension(filenames[i], PERMITTED_ANTS_MAT_EXT):
dims = self.dims
savemat(filenames[i], {f'AffineTransform_float_{dims}_{dims}': mat, 'fixed': np.zeros((self.dims, 1)).astype(np.float32)})
else:
savetxt(filenames[i], A, t)
logger.info(f"Saved transform to {filenames[i]}")
def get_rigid_matrix(self, homogenous=True):
"""Compute the complete rigid transformation matrix.
Combines rotation, translation and optional scaling into a single matrix.
Args:
homogenous (bool, optional): Whether to return homogeneous matrix. Default: True
Returns:
torch.Tensor: If homogenous=True: [N, dim+1, dim+1] transformation matrices
If homogenous=False: [N, dim, dim+1] transformation matrices
"""
rigidmat = self.get_rotation_matrix() # [N, dim+1, dim+1]
scale = torch.exp(self.logscale) # [N, D]
scale = scale[..., None]
# N, D = scale.shape
# scalediag = torch.zeros((N, D, D), device=scale.device)
# scalediag[:, np.arange(D), np.arange(D)] = scale
matclone = rigidmat.clone()
matclone[:, :-1, :-1] = scale * rigidmat[:, :-1, :-1]
transl = self.transl
if self.around_center: # convert t' to t
transl = transl + self.center - (matclone[:, :-1, :-1] @ self.center[..., None]).squeeze(-1)
# now we can assign the translation
matclone[:, :-1, -1] = transl # [N, dim+1, dim+1]
return matclone.contiguous() if homogenous else matclone[:, :-1, :].contiguous() # [N, dim, dim+1]
def get_inverse_warp_parameters(self, fixed_images: Union[BatchedImages, FakeBatchedImages], moving_images: Union[BatchedImages, FakeBatchedImages], shape=None):
raise NotImplementedError("Inverse warped coordinates not implemented for rigid registration")
def get_warp_parameters(self, fixed_images: Union[BatchedImages, FakeBatchedImages], moving_images: Union[BatchedImages, FakeBatchedImages], shape=None):
"""Compute transformed coordinates for the rigid registration.
Applies the rigid transformation (rotation, translation, scaling) to map
coordinates from fixed image space to moving image space.
Args:
fixed_images (BatchedImages): Fixed/reference images
moving_images (BatchedImages): Moving images
shape (Optional[tuple]): Output shape for coordinate grid
Returns:
torch.Tensor: Transformed coordinates in normalized [-1,1] space
Shape: [N, H, W, [D], dims]
"""
fixed_t2p = fixed_images.get_torch2phy().to(self.dtype)
moving_p2t = moving_images.get_phy2torch().to(self.dtype)
rigid_matrix = self.get_rigid_matrix()
if shape is None:
shape = fixed_images.shape
rigidmat = ((moving_p2t @ rigid_matrix @ fixed_t2p)[:, :-1]).contiguous()
return {
'affine': rigidmat.to(self.dtype),
'out_shape': shape
}
def optimize(self):
"""Optimize the rigid registration parameters.
Performs multi-resolution optimization of the rigid transformation parameters
using the configured similarity metric and optimizer.
Args:
None
Returns:
None
"""
''' Given fixed and moving images, optimize rigid registration '''
fixed_arrays = self.fixed_images()
moving_arrays = self.moving_images()
fixed_t2p = self.fixed_images.get_torch2phy().to(self.dtype)
moving_p2t = self.moving_images.get_phy2torch().to(self.dtype)
fixed_size = fixed_arrays.shape[2:]
# save initial affine transform to initialize grid
for scale, iters in zip(self.scales, self.iterations):
# reset
self.convergence_monitor.reset()
prev_loss = np.inf
# notify loss function of scale change if it supports it
if hasattr(self.loss_fn, 'set_current_scale_and_iterations'):
self.loss_fn.set_current_scale_and_iterations(scale, iters)
# downsample fixed array and retrieve coords
size_down = [max(int(s / scale), MIN_IMG_SIZE) for s in fixed_size]
mov_size_down = [max(int(s / scale), MIN_IMG_SIZE) for s in moving_arrays.shape[2:]]
# downsample
if self.blur and scale > 1:
sigmas = 0.5 * torch.tensor(
[sz / szdown for sz, szdown in zip(fixed_size, size_down)],
device=fixed_arrays.device,
dtype=moving_arrays.dtype,
)
gaussians = [gaussian_1d(s, truncated=2) for s in sigmas]
fixed_image_down = self._downsample_image_and_mask(
fixed_arrays,
size=size_down,
mode=self.fixed_images.interpolate_mode,
gaussians=gaussians,
align_corners=True,
)
moving_image_blur = self._downsample_image_and_mask(
moving_arrays,
size=mov_size_down,
mode=self.moving_images.interpolate_mode,
gaussians=gaussians,
align_corners=True,
)
# extra Gaussian smoothing should also ignore the mask channel
moving_image_blur = self._smooth_image_not_mask(moving_image_blur, gaussians)
else:
if scale > 1:
fixed_image_down = F.interpolate(
fixed_arrays, size=size_down, mode=self.fixed_images.interpolate_mode, align_corners=True
)
else:
fixed_image_down = fixed_arrays
moving_image_blur = moving_arrays
# print(fixed_image_down.min(), fixed_image_down.max())
# this is in physical space
pbar = tqdm(range(iters)) if self.progress_bar else range(iters)
for i in pbar:
self.optimizer.zero_grad()
rigid_matrix = self.get_rigid_matrix()
mat = ((moving_p2t @ rigid_matrix @ fixed_t2p)[:, :-1]).contiguous()
# sample from these coords
moved_image = fireants_interpolator(moving_image_blur, affine=mat.to(moving_image_blur.dtype),
out_shape=fixed_image_down.shape, mode='bilinear', align_corners=True) # [N, C, H, W, [D]]
loss = self.loss_fn(moved_image, fixed_image_down)
loss.backward()
self.optimizer.step()
# check for convergence
cur_loss = loss.item()
if self.convergence_monitor.converged(cur_loss):
break
prev_loss = cur_loss
if self.progress_bar:
pbar.set_description("scale: {}, iter: {}/{}, loss: {:4f}".format(scale, i, iters, prev_loss))
|