⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itkorientedimageadaptortest.cxx

📁 DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.
💻 CXX
字号:
/*=========================================================================

  Program:   Insight Segmentation & Registration Toolkit
  Module:    $RCSfile: itkOrientedImageAdaptorTest.cxx,v $
  Language:  C++
  Date:      $Date: 2008-02-14 17:52:07 $
  Version:   $Revision: 1.2 $

  Copyright (c) Insight Software Consortium. All rights reserved.
  See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even 
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     PURPOSE.  See the above copyright notices for more information.

=========================================================================*/
/**
 *  
 *  This program illustrates the use of Adaptors and
 *  Accessors
 *
 *  The example shows how an Adaptor can be used to 
 *  get acces only to thered component of an RGBPixel image
 *  giving the appearance of being just a 'float' image
 *
 *  That will allow to pass the red component of this
 *  image as input or output to any filter that expects
 *  a float image
 *
 */
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif

#include <itkImageAdaptor.h>
#include <itkImageRegionIteratorWithIndex.h>
#include <itkRGBPixel.h>
#include <itkRedPixelAccessor.h>
#include <itkOrientedImage.h>


//-------------------------------------
//     Typedefs for convenience
//-------------------------------------
typedef itk::OrientedImage< itk::RGBPixel<float>,   2 > myImageType;
 

typedef itk::RedPixelAccessor<float> myRedAccessorType;

typedef itk::ImageAdaptor< myImageType, myRedAccessorType > myRedAdaptorType;

typedef itk::ImageRegionIteratorWithIndex< myImageType >       myIteratorType;

typedef itk::ImageRegionIteratorWithIndex< myRedAdaptorType >  myRedIteratorType;



//-------------------------
//
//   Main code
//
//-------------------------
int itkOrientedImageAdaptorTest(int, char* []) {


  myImageType::SizeType size;
  size[0] = 2;
  size[1] = 2;

  myImageType::IndexType index;
  index[0] = 0;
  index[1] = 0;

  myImageType::RegionType region;
  region.SetIndex( index );
  region.SetSize(  size  );

  myImageType::Pointer myImage = myImageType::New();


  myImage->SetLargestPossibleRegion( region );
  myImage->SetBufferedRegion( region );
  myImage->SetRequestedRegion( region );
  myImage->Allocate();
  
  myIteratorType  it1( myImage, myImage->GetRequestedRegion() );
  
  // Value to initialize the pixels
  myImageType::PixelType::ComponentType colorInit[3] = {1.0f, 0.5f, 0.5f};
  myImageType::PixelType color = colorInit;
  
  // Initializing all the pixel in the image
  it1.GoToBegin();
  while( !it1.IsAtEnd() )
    {
    it1.Set(color);
    ++it1;
    }

  // Reading the values to verify the image content
  std::cout << "--- Before --- " << std::endl;
  it1.GoToBegin();
  while( !it1.IsAtEnd() )
    {
    const myImageType::PixelType c( it1.Get() );
    std::cout << c.GetRed()   << "  ";
    std::cout << c.GetGreen() << "  ";
    std::cout << c.GetBlue()  << std::endl;
    ++it1;
    }



  myRedAdaptorType::Pointer myAdaptor = myRedAdaptorType::New();
  myAdaptor->SetImage( myImage );

 
  myRedIteratorType  it2( myAdaptor, myAdaptor->GetRequestedRegion() );

  // Set the values of the Red component of myImage, using myAdaptor
  it2.GoToBegin();
  while( !it2.IsAtEnd() )
    {
    it2.Set( 0.4 );
    ++it2;
    }


  std::cout << "--- After --- " << std::endl;

  it1.GoToBegin();
  while( !it1.IsAtEnd() )
    {
    const myImageType::PixelType c( it1.Get() );
    std::cout << c.GetRed()   << "  ";
    std::cout << c.GetGreen() << "  ";
    std::cout << c.GetBlue()  << std::endl;
    ++it1;
    }

  // Test the Set/Get Methods of the adaptor
  // First test the get methods of the adaptor

  if (myImage->GetPixelContainer() != myAdaptor->GetPixelContainer())
    {
    std::cout << "image pixel container != adaptor pixel container: "
              << myImage->GetPixelContainer() << " != "
              << myAdaptor->GetPixelContainer()
              << std::endl;
    return EXIT_FAILURE;
    }

  float forigin[2] = {2.0, 3.0};
  myImage->SetOrigin(forigin);
  if (myImage->GetOrigin() != myAdaptor->GetOrigin())
    {
    std::cout << "image origin != adaptor origin: "
              << myImage->GetOrigin() << " != "
              << myAdaptor->GetOrigin()
              << std::endl;
    return EXIT_FAILURE;
    }

  double dorigin[2] = {2.0, 3.0};
  myImage->SetOrigin(dorigin);
  if (myImage->GetOrigin() != myAdaptor->GetOrigin())
    {
    std::cout << "image origin != adaptor origin: "
              << myImage->GetOrigin() << " != "
              << myAdaptor->GetOrigin()
              << std::endl;
    return EXIT_FAILURE;
    }


  myImageType::PointType imageOrigin;
  imageOrigin.Fill(10.0);
  myImage->SetOrigin(imageOrigin);
  if (myImage->GetOrigin() != myAdaptor->GetOrigin())
    {
    std::cout << "image origin != adaptor origin: "
              << myImage->GetOrigin() << " != "
              << myAdaptor->GetOrigin()
              << std::endl;
    return EXIT_FAILURE;
    }

  float fspacing[2] = {2.0, 3.0};
  myImage->SetSpacing(fspacing);
  if (myImage->GetSpacing() != myAdaptor->GetSpacing())
    {
    std::cout << "image spacing != adaptor spacing: "
              << myImage->GetSpacing() << " != "
              << myAdaptor->GetSpacing()
              << std::endl;
    return EXIT_FAILURE;
    }

  double dspacing[2] = {2.0, 3.0};
  myImage->SetSpacing(dspacing);
  if (myImage->GetSpacing() != myAdaptor->GetSpacing())
    {
    std::cout << "image spacing != adaptor spacing: "
              << myImage->GetSpacing() << " != "
              << myAdaptor->GetSpacing()
              << std::endl;
    return EXIT_FAILURE;
    }


  myImageType::SpacingType imageSpacing;
  imageSpacing.Fill(10.0);

  myImage->SetSpacing(imageSpacing);
  if (myImage->GetSpacing() != myAdaptor->GetSpacing())
    {
    std::cout << "image spacing != adaptor spacing: "
              << myImage->GetSpacing() << " != "
              << myAdaptor->GetSpacing()
              << std::endl;
    return EXIT_FAILURE;
    }

  myImageType::DirectionType imageDirection;
  imageDirection.SetIdentity();
  imageDirection[1][1]=10.0;

  myImage->SetDirection(imageDirection);
  if (myImage->GetDirection() != myAdaptor->GetDirection())
    {
    std::cout << "image direction != adaptor direction: "
              << myImage->GetDirection() << " != "
              << myAdaptor->GetDirection()
              << std::endl;
    return EXIT_FAILURE;
    }

  // Now test the set methods of the adaptor
  forigin[0] = 20.0;
  myAdaptor->SetOrigin(forigin);
  if (myImage->GetOrigin() != myAdaptor->GetOrigin())
    {
    std::cout << "image origin != adaptor origin: "
              << myImage->GetOrigin() << " != "
              << myAdaptor->GetOrigin()
              << std::endl;
    return EXIT_FAILURE;
    }

  dorigin[0] = 20.0;
  myAdaptor->SetOrigin(dorigin);
  if (myImage->GetOrigin() != myAdaptor->GetOrigin())
    {
    std::cout << "image origin != adaptor origin: "
              << myImage->GetOrigin() << " != "
              << myAdaptor->GetOrigin()
              << std::endl;
    return EXIT_FAILURE;
    }

  imageOrigin.Fill(100.0);

  myAdaptor->SetOrigin(imageOrigin);
  if (myImage->GetOrigin() != myAdaptor->GetOrigin())
    {
    std::cout << "image origin != adaptor origin: "
              << myImage->GetOrigin() << " != "
              << myAdaptor->GetOrigin()
              << std::endl;
    return EXIT_FAILURE;
    }

  fspacing[0] = 20.0;
  myAdaptor->SetSpacing(fspacing);
  if (myImage->GetSpacing() != myAdaptor->GetSpacing())
    {
    std::cout << "image spacing != adaptor spacing: "
              << myImage->GetSpacing() << " != "
              << myAdaptor->GetSpacing()
              << std::endl;
    return EXIT_FAILURE;
    }

  dspacing[0] = 20.0;
  myAdaptor->SetSpacing(dspacing);
  if (myImage->GetSpacing() != myAdaptor->GetSpacing())
    {
    std::cout << "image spacing != adaptor spacing: "
              << myImage->GetSpacing() << " != "
              << myAdaptor->GetSpacing()
              << std::endl;
    return EXIT_FAILURE;
    }

  imageSpacing.Fill(100.0);

  myAdaptor->SetSpacing(imageSpacing);
  if (myImage->GetSpacing() != myAdaptor->GetSpacing())
    {
    std::cout << "image spacing != adaptor spacing: "
              << myImage->GetSpacing() << " != "
              << myAdaptor->GetSpacing()
              << std::endl;
    return EXIT_FAILURE;
    }

  imageDirection[1][1]=100.0;

  myAdaptor->SetDirection(imageDirection);
  if (myImage->GetDirection() != myAdaptor->GetDirection())
    {
    std::cout << "image direction != adaptor direction: "
              << myImage->GetDirection() << " != "
              << myAdaptor->GetDirection()
              << std::endl;
    return EXIT_FAILURE;
    }

  return EXIT_SUCCESS;
}



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -