实例7 向量图像(将一个向量存储到一个图像像素中)

#include "itkVector.h"//向量类的头文件
#include "itkImage.h"

int main(int, char *[])
{
  /*向量类的使用是在基于空间中代表坐标和维数的类型之上进行模板化的。在此例中,向
  量的长度和图像长度相匹配,但是并不是完全相同。我们可以用一个三维的向量作为像素来
  定义一个四维的图像*/
  typedef itk::Vector< float, 3 >       PixelType;
  typedef itk::Image< PixelType, 3 >    ImageType;
  
  ImageType::Pointer image = ImageType::New();

  const ImageType::IndexType start = {{0,0,0}}; //First index at {X,Y,Z}
  const ImageType::SizeType  size = {{200,200,200}}; //Size of {X,Y,Z}

  ImageType::RegionType region;
  region.SetSize( size );
  region.SetIndex( start );

  image->SetRegions( region );
  image->Allocate();

  ImageType::PixelType  initialValue;
  initialValue.Fill( 0.0 );
  image->FillBuffer( initialValue );
  const ImageType::IndexType pixelIndex = {{27,29,37}}; //{X,Y,Z}对应像素索引位置
  //由于向量类从 itk::FixedArray 类继承了[] 操作,所以也可以使用 index 符号来访问向量成员
  ImageType::PixelType   pixelValue;
  pixelValue[0] =  1.345;   // x component
  pixelValue[1] =  6.841;   // y component
  pixelValue[2] =  3.295;   // x component

  std::cout << "pixelIndex索引处给定的向量值:" << std::endl;
  std::cout << pixelValue << std::endl;
  //通过定义一个标识并调用 SetPixel( ) 方法来将这个向量储存到pixelIndex索引像素中
  image->SetPixel(   pixelIndex,   pixelValue  );
  //获取pixelIndex处像素值value
  ImageType::PixelType value = image->GetPixel( pixelIndex );
  //打印像素值value
  std::cout << "pixelIndex索引处读取的像素值:" << std::endl;
  std::cout << value << std::endl;

  return EXIT_SUCCESS;
}

ITK系列7_ 向量图像(将一个向量存储到一个图像像素中)_向量图像

ITK系列目录:

1 ITK图像数据表达之图像

2 ITK图像处理之图像滤波

3 ITK图像处理之图像分割

注:例程配套素材见系列目录