Inquiry Regarding Registration Model Inference for Pre-to-Post Surgical Prediction #2058
-
|
Hello, I have a question regarding image registration that I would like to consult with you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
I think what you want is just to apply freeform deformation to an image rather than doing registration. The idea with registration is that you have two images which should correspond in some way, then you predict or estimate the deformation field to get the moving image to match the fixed image. If you have only one image as input then you don't have any correspondence between images to predict, so I think what you want to do isn't registration but image generation. If you want to start from a pre-operative image and generate a post-operative one (segmentations being an image type), you are looking at an image-to-image problem which you could tackle with generative networks. You would need a dataset of pre-operative images paired with corresponding post-operative segmentations, then with that you can train a network to predict the segmentation. This likely isn't easy and will require a complex supervised or semi-supervised scheme, so you should consult much of the existing literature on predicting post-operative biomarkers from pre-operative imaging. This isn't my area so it's hard for me to advise beyond that, but I don't think registration is the way to go from your description. |
Beta Was this translation helpful? Give feedback.
I think what you want is just to apply freeform deformation to an image rather than doing registration. The idea with registration is that you have two images which should correspond in some way, then you predict or estimate the deformation field to get the moving image to match the fixed image. If you have only one image as input then you don't have any correspondence between images to predict, so I think what you want to do isn't registration but image generation.
If you want to start from a pre-operative image and generate a post-operative one (segmentations being an image type), you are looking at an image-to-image problem which you could tackle with generative networks. You would nee…