vinthony / vinthony.github.io

all about myself.
8 stars 1 forks source link

ITK 中multimodal图像配准方法概述 #28

Open vinthony opened 8 years ago

vinthony commented 8 years ago

背景

关于图像配准 在医学图像处理中,图片的space是不可缺少的组成部分,所谓multimodal就是不同space 和不同points之间的配准。

预处理

image

  1. 首先我们fixedImagemovingImage进行插值处理,这样可以将两个不同大小不同space的图像采用相同的大小个数表示出来。形成一幅virtualImage
  2. 如图,这个virtualImage中的每个像素点通过transfrom_fixed对应了fixedImage的像素点,通过transfor_moving对应了movingImage的像素点。处理过程就在virtualImage上进行。一般情况下这个virtualImage的就是fixedImage

    配准过程

通过处理每一个virtualImage的点,能够找到相对应的fixedImageValuemovingImageValue。通过描述每两个点之间的关系(MeanSquare or MutualInformation 等等) 就能够判断当前的metric是否是最优解。

参考资料

itk software guide