ITK  5.2.0
Insight Toolkit
Examples/Filtering/ResampleImageFilter9.cxx
/*=========================================================================
*
* Copyright NumFOCUS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
// Software Guide : BeginLatex
//
// Resampling can also be performed in multi-component images.
// This example compares nearest neighbor resampling using the Nearest
// neighbor and the linear interpolators for vector images.
//
// Try
// ResampleImageFilter9 Examples/Data/VisibleWomanEyeSlice.png
// SliceNearestNeighbor.png SliceLinear.png
//
// \index{itk::ResampleImageFilter!Image internal transform}
//
// Software Guide : EndLatex
#include "itkImage.h"
#include "itkRGBPixel.h"
int
main(int argc, char * argv[])
{
if (argc < 4)
{
std::cerr << "Usage: " << std::endl;
std::cerr << argv[0]
<< " inputImageFile outputImageFile_NearestNeighbor"
<< " outputImageFile_Linear " << std::endl;
return EXIT_FAILURE;
}
constexpr unsigned int Dimension = 2;
using PixelComponentType = unsigned char;
using ReaderType = itk::ImageFileReader<ImageType>;
using WriterType = itk::ImageFileWriter<ImageType>;
ReaderType::Pointer reader = ReaderType::New();
WriterType::Pointer writerNearest =
WriterType::New(); // writer for nearest neighbor
WriterType::Pointer writerLinear = WriterType::New(); // writer for linear
reader->SetFileName(argv[1]);
writerNearest->SetFileName(argv[2]);
writerLinear->SetFileName(argv[3]);
FilterType::Pointer nearestFilter = FilterType::New();
FilterType::Pointer linearFilter = FilterType::New();
// Interpolators
using NearestInterpolatorType =
NearestInterpolatorType::Pointer interpolatorNearest =
NearestInterpolatorType::New();
using LinearInterpolatorType =
LinearInterpolatorType::Pointer interpolatorLinear =
LinearInterpolatorType::New();
nearestFilter->SetInterpolator(interpolatorNearest);
linearFilter->SetInterpolator(interpolatorLinear);
TransformType::Pointer transform = TransformType::New();
nearestFilter->SetTransform(transform);
linearFilter->SetTransform(transform);
// Software Guide : BeginCodeSnippet
PixelType defaultValue;
defaultValue.Fill(50);
nearestFilter->SetDefaultPixelValue(defaultValue);
linearFilter->SetDefaultPixelValue(defaultValue);
// Software Guide : EndCodeSnippet
// Software Guide : BeginCodeSnippet
ImageType::SpacingType spacing;
spacing[0] = .35; // pixel spacing in millimeters along X
spacing[1] = .35; // pixel spacing in millimeters along Y
nearestFilter->SetOutputSpacing(spacing);
linearFilter->SetOutputSpacing(spacing);
// Software Guide : EndCodeSnippet
// Software Guide : BeginCodeSnippet
origin[0] = 0.4; // X space coordinate of origin
origin[1] = 0.4; // Y space coordinate of origin
nearestFilter->SetOutputOrigin(origin);
linearFilter->SetOutputOrigin(origin);
// Software Guide : EndCodeSnippet
// Software Guide : BeginCodeSnippet
direction.SetIdentity();
nearestFilter->SetOutputDirection(direction);
linearFilter->SetOutputDirection(direction);
// Software Guide : EndCodeSnippet
size[0] = 300; // number of pixels along X
size[1] = 300; // number of pixels along Y
nearestFilter->SetSize(size);
linearFilter->SetSize(size);
nearestFilter->SetInput(reader->GetOutput());
linearFilter->SetInput(reader->GetOutput());
writerNearest->SetInput(nearestFilter->GetOutput());
writerLinear->SetInput(linearFilter->GetOutput());
try
{
writerNearest->Update();
}
catch (const itk::ExceptionObject & excp)
{
std::cerr << "Exception thrown " << std::endl;
std::cerr << excp << std::endl;
}
try
{
writerLinear->Update();
}
catch (const itk::ExceptionObject & excp)
{
std::cerr << "Exception thrown " << std::endl;
std::cerr << excp << std::endl;
}
return EXIT_SUCCESS;
}
itk::Matrix::SetIdentity
void SetIdentity()
Definition: itkMatrix.h:192
itk::RGBPixel
Represent Red, Green and Blue components for color images.
Definition: itkRGBPixel.h:58
itk::IdentityTransform
Implementation of an Identity Transform.
Definition: itkIdentityTransform.h:50
itk::GTest::TypedefsAndConstructors::Dimension2::DirectionType
ImageBaseType::DirectionType DirectionType
Definition: itkGTestTypedefsAndConstructors.h:52
itkRGBPixel.h
itkLinearInterpolateImageFunction.h
itk::GTest::TypedefsAndConstructors::Dimension2::PointType
ImageBaseType::PointType PointType
Definition: itkGTestTypedefsAndConstructors.h:51
itkImageFileReader.h
itk::GTest::TypedefsAndConstructors::Dimension2::SizeType
ImageBaseType::SizeType SizeType
Definition: itkGTestTypedefsAndConstructors.h:49
itkImage.h
itk::ImageFileReader
Data source that reads image data from a single file.
Definition: itkImageFileReader.h:75
itk::LinearInterpolateImageFunction
Linearly interpolate an image at specified positions.
Definition: itkLinearInterpolateImageFunction.h:50
itk::ImageFileWriter
Writes image data to a single file.
Definition: itkImageFileWriter.h:88
itkIdentityTransform.h
itkNearestNeighborInterpolateImageFunction.h
itkImageFileWriter.h
itk::Size::SetSize
void SetSize(const SizeValueType val[VDimension])
Definition: itkSize.h:179
itk::ResampleImageFilter
Resample an image via a coordinate transform.
Definition: itkResampleImageFilter.h:90
itk::Image
Templated n-dimensional image class.
Definition: itkImage.h:86
itk::NearestNeighborInterpolateImageFunction
Nearest neighbor interpolation of a scalar image.
Definition: itkNearestNeighborInterpolateImageFunction.h:39
itkResampleImageFilter.h
itk::GTest::TypedefsAndConstructors::Dimension2::Dimension
constexpr unsigned int Dimension
Definition: itkGTestTypedefsAndConstructors.h:44