📄 itkjoinimagefiltertest.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkJoinImageFilterTest.cxx,v $
Language: C++
Date: $Date: 2007-08-10 14:34:02 $
Version: $Revision: 1.10 $
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.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include <itkImage.h>
#include <itkJoinImageFilter.h>
#include <itkImageRegionIterator.h>
#include <itkVector.h>
#include <itkRGBAPixel.h>
#include <vnl/vnl_sample.h>
int itkJoinImageFilterTest(int, char* [] )
{
// Define the dimension of the images
const unsigned int myDimension = 2;
// Declare the types of the images
typedef itk::Image<char, myDimension> myImageType1;
typedef itk::Image<itk::Vector<unsigned short, 2>, myDimension> myImageType2;
typedef itk::Image<itk::RGBAPixel<short>, myDimension> myImageType3;
// Declare the type of the index to access images
typedef itk::Index<myDimension> myIndexType;
// Declare the type of the size
typedef itk::Size<myDimension> mySizeType;
// Declare the type of the Region
typedef itk::ImageRegion<myDimension> myRegionType;
// Create three images
myImageType1::Pointer inputImageA = myImageType1::New();
myImageType2::Pointer inputImageB = myImageType2::New();
myImageType3::Pointer inputImageC = myImageType3::New();
// Define their size, and start index
mySizeType size;
size[0] = 5;
size[1] = 8;
myIndexType start;
start[0] = 0;
start[1] = 0;
myRegionType region;
region.SetIndex( start );
region.SetSize( size );
// Initialize Image A
inputImageA->SetLargestPossibleRegion( region );
inputImageA->SetBufferedRegion( region );
inputImageA->SetRequestedRegion( region );
inputImageA->Allocate();
// Initialize Image B
inputImageB->SetLargestPossibleRegion( region );
inputImageB->SetBufferedRegion( region );
inputImageB->SetRequestedRegion( region );
inputImageB->Allocate();
// Initialize Image C
inputImageC->SetLargestPossibleRegion( region );
inputImageC->SetBufferedRegion( region );
inputImageC->SetRequestedRegion( region );
inputImageC->Allocate();
// Declare Iterator types apropriated for each image
typedef itk::ImageRegionIterator<myImageType1> myIteratorType1;
typedef itk::ImageRegionIterator<myImageType2> myIteratorType2;
typedef itk::ImageRegionIterator<myImageType3> myIteratorType3;
// Create one iterator for Image A (this is a light object)
myIteratorType1 it1( inputImageA, region );
// Initialize the content of Image A
std::cout << "Image #1 " << std::endl;
while( !it1.IsAtEnd() )
{
it1.Set( (char) vnl_sample_uniform(0, 255) );
std::cout << (int) it1.Get() << std::endl;
++it1;
}
// Create one iterator for Image B (this is a light object)
myIteratorType2 it2( inputImageB, region );
// Initialize the content of Image B
std::cout << std::endl;
std::cout << "Image #2 " << std::endl;
itk::Vector<unsigned short, 2> vec;
while( !it2.IsAtEnd() )
{
vec[0] = (unsigned short) vnl_sample_uniform(0, 32765);
vec[1] = (unsigned short) vnl_sample_uniform(0, 32765);
it2.Set( vec );
std::cout << it2.Get() << std::endl;
++it2;
}
// Create one iterator for Image C (this is a light object)
myIteratorType3 itRGBA( inputImageC, region );
// Initialize the content of Image C
std::cout << std::endl;
std::cout << "Image #3 " << std::endl;
itk::RGBAPixel<short> rgbaVec;
while( !itRGBA.IsAtEnd() )
{
rgbaVec[0] = (short) vnl_sample_uniform(0, 255);
rgbaVec[1] = (short) vnl_sample_uniform(0, 255);
rgbaVec[2] = (short) vnl_sample_uniform(0, 255);
rgbaVec[3] = (short) vnl_sample_uniform(0, 255);
itRGBA.Set( rgbaVec );
// std::cout << itRGBA.Get() << std::endl;
++itRGBA;
}
// Declare the types for the Join Filters
typedef itk::JoinImageFilter<myImageType1, myImageType2> myFilterType;
typedef itk::JoinImageFilter<myImageType2, myImageType1> myFilterType1;
typedef itk::JoinImageFilter<myImageType1, myImageType1> myFilterType2;
typedef itk::JoinImageFilter<myFilterType::OutputImageType, myImageType3> myFilterType3;
typedef itk::JoinImageFilter<myImageType2, myImageType2> myFilterType4;
typedef itk::ImageRegionIterator<myFilterType::OutputImageType> myOutputIteratorType;
typedef itk::ImageRegionIterator<myFilterType1::OutputImageType> myOutputIteratorType1;
typedef itk::ImageRegionIterator<myFilterType2::OutputImageType> myOutputIteratorType2;
typedef itk::ImageRegionIterator<myFilterType3::OutputImageType> myOutputIteratorType3;
typedef itk::ImageRegionIterator<myFilterType4::OutputImageType> myOutputIteratorType4;
//
// Join image #1 and #2
//
// Setup a JoinImageFilter
myFilterType::Pointer filter = myFilterType::New();
filter->SetInput1( inputImageA );
filter->SetInput2( inputImageB );
filter->SetFunctor(filter->GetFunctor());
//
// Join image #1#2 and #3
//
// Setup a JoinImageFilter
myFilterType3::Pointer filter123 = myFilterType3::New();
filter123->SetInput1( filter->GetOutput() );
filter123->SetInput2( inputImageC );
filter123->Update(); // This Update will force filter to execute, then filter123
// Create an iterator for going through the image #1#2
myFilterType::OutputImageType::Pointer outputImage = filter->GetOutput();
myOutputIteratorType it3(outputImage, outputImage->GetRequestedRegion());
// Print the content of the result image
std::cout << std::endl;
std::cout << "Joining #1 and #2 image " << std::endl;
while( !it3.IsAtEnd() )
{
std::cout << it3.Get() << std::endl;
++it3;
}
// Create an iterator for going through the image #1#2#3
myFilterType3::OutputImageType::Pointer outputImage123 = filter123->GetOutput();
myOutputIteratorType3 it123(outputImage123, outputImage123->GetRequestedRegion());
// Print the content of the result image
std::cout << std::endl;
std::cout << "Joining #1#2 and #3 image " << std::endl;
while( !it123.IsAtEnd() )
{
std::cout << it123.Get() << std::endl;
++it123;
}
//
// Join image #2 and #1
//
// Setup a JoinImageFilter
myFilterType1::Pointer filter1 = myFilterType1::New();
filter1->SetInput1( inputImageB );
filter1->SetInput2( inputImageA );
filter1->Update();
// Create an iterator for going through the image output
myFilterType1::OutputImageType::Pointer outputImage1 = filter1->GetOutput();
myOutputIteratorType1 it4(outputImage1, outputImage1->GetRequestedRegion());
// Print the content of the result image
std::cout << std::endl;
std::cout << "Joining #2 and #1 image " << std::endl;
while( !it4.IsAtEnd() )
{
std::cout << it4.Get() << std::endl;
++it4;
}
//
// Join image #1 and #1
//
// Setup a JoinImageFilter
myFilterType2::Pointer filter2 = myFilterType2::New();
filter2->SetInput1( inputImageA );
filter2->SetInput2( inputImageA );
filter2->Update();
// Create an iterator for going through the image output
myFilterType2::OutputImageType::Pointer outputImage2 = filter2->GetOutput();
myOutputIteratorType2 it5(outputImage2, outputImage2->GetRequestedRegion());
// Print the content of the result image
// std::cout << std::endl;
std::cout << "Joining #1 and #1 image " << std::endl;
while( !it5.IsAtEnd() )
{
std::cout << (int) it5.Get()[0] << " " << (int) it5.Get()[1] << std::endl;
++it5;
}
//
// Join image #2 and #2
//
// Setup a JoinImageFilter
myFilterType4::Pointer filter4 = myFilterType4::New();
filter4->SetInput1( inputImageB );
filter4->SetInput2( inputImageB );
filter4->Update();
// Create an iterator for going through the image output
myFilterType4::OutputImageType::Pointer outputImage4 = filter4->GetOutput();
myOutputIteratorType4 it6(outputImage4, outputImage4->GetRequestedRegion());
// Print the content of the result image
// std::cout << std::endl;
std::cout << "Joining #2 and #2 image " << std::endl;
while( !it6.IsAtEnd() )
{
std::cout << it6.Get() << std::endl;
++it6;
}
// All objects should be automatically destroyed at this point
return EXIT_SUCCESS;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -