Closed busyyang closed 8 months ago
So for OASIS and AbdomenCTCT, because they are inter-patient registration, there are no absolute definition of a fixed and moving image, in other words, both x
and y
can be the fixed image, and both x
and y
can be the moving image. So we take the advantage of this property of the data to perform this two-way registration. We first use x
as the fixed image, y
as the moving image, and then we inverse them and use x
as the moving image and y
as the fixed image. This essentially allows the model to learn more robust representations, and this is a common trick used in deep-learning-based image registration.
It's so clear. Thanks.
@yuelinxin 看了你的简历,本科生就这么强了???
@yuelinxin 看了你的简历,本科生就这么强了???
啥呀😂,最近申请phd感觉全凉了。
@yuelinxin 看了你的简历,本科生就这么强了???
啥呀😂,最近申请phd感觉全凉了。
@yuelinxin 加油,确实很强。
In the training part in train.py, the registration model is trained by (x,y) pair firstly:
And for OASIS and abdomenCTCT dataset, (y,x) pair is also feed into the model:
Why you do this? Is it for data augmentation?