BailiangJ
BailiangJ
I would recommend you to read Chapter 3 of this paper, Guo, Courtney K. Multi-modal image registration with unsupervised deep learning. MEng. Thesis, I think your questions could be answered...
Hi @mmodat , are there any updates on this issue? Hi @wentaozhu , did you manage to figure out the solution to the problem? I am also facing the same...
Hi, I have figured out the solution. I will later attach a link to the jupyter notebook with the solution in case someone is interested in the future. Thanks a...
``` class SpatialTransformer(nn.Module): """ N-D Spatial Transformer """ def __init__(self, size, mode='bilinear'): super().__init__() self.mode = mode # create sampling grid vectors = [torch.arange(0, s) for s in size] grids =...