centered transform when applying image registration
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I'm registering set of MR images (512x512x28) using imregister but it's not working well in my case because I want that the sets are registered based on the prostate (later I'll focus on prostate segmentation, so I need that they are aligned). So, I intend to use the center of the prostate in the fixed image as the rotation center and then use the vector between the fixed image center and the moving image center as the initial translation to be applied after the rotation. The issue is that I don't know how to do that by using imregister, can someone help me?
Thank you
7 件のコメント
Sean de Wolski
2012 年 10 月 24 日
Why not do the prostate segmentation before? This will give it more weight in the optimizer.
採用された回答
Matt J
2012 年 10 月 24 日
編集済み: Matt J
2012 年 10 月 24 日
Basically, then you're saying you want the registration algorithm to give more priority to the prostate alignment than to the rest of the anatomy? The only thing I can think of is that you might try to crop MR1 and MR2 to a smaller general region of the prostate, if you know it. If the prostate anatomy dominates the images, it will obviously get a lot of priority.
2 件のコメント
Matt J
2012 年 10 月 24 日
The only way I can see to do a 3D crop is
Icrop=I(xmin:xmax,ymin:ymax,zmin:zmax)
or similar indexing schemes.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!