ITK  6.0.0
Insight Toolkit
Examples/Filtering/OrientImageFilter.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
*
* https://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.
*
*=========================================================================*/
#include "itkImage.h"
int
main(int argc, char * argv[])
{
if (argc < 4)
{
std::cerr << "Usage: " << std::endl;
std::cerr << argv[0]
<< " inputImageFile outputImageFile "
"desiredPositiveCoordinateOrientation"
<< std::endl;
return EXIT_FAILURE;
}
// Get the inputs from the command line in C++ style
std::string inputImageFile = argv[1];
std::string outputImageFile = argv[2];
itk::AnatomicalOrientation desiredCoordinateOrientation{
};
if (desiredCoordinateOrientation ==
{
std::cerr << "Invalid desiredPositiveCoordinateOrientation: " << argv[3]
<< std::endl;
std::cerr << "Valid values are of the form LPS, RIP, etc.";
std::cerr << "Where each letter is either L or R, P or A, I or S."
<< std::endl;
return EXIT_FAILURE;
}
// Define the image and reader types
using PixelType = unsigned short;
using ImageType = itk::Image<PixelType, 3>;
using ReaderType = itk::ImageFileReader<ImageType>;
// Create and set up a reader
reader->SetFileName(inputImageFile);
reader->UpdateOutputInformation();
auto pixelType = reader->GetImageIO()->GetPixelType();
auto componentType = reader->GetImageIO()->GetComponentType();
if (pixelType != itk::IOPixelEnum::SCALAR ||
componentType != itk::IOComponentEnum::USHORT)
{
itkGenericOutputMacro(
"The input image is being converted to scalar unsigned short.");
}
auto inputDirection = reader->GetOutput()->GetDirection();
std::cout << "Input image direction: " << std::endl;
inputDirection.PrintSelf(std::cout, itk::Indent(2));
std::cout << "The input image has the following orientation: " << std::endl;
std::cout << '\t' << itk::AnatomicalOrientation(inputDirection)
<< std::endl;
std::cout << "The re-orienting to approximately the desired orientation: "
<< std::endl;
std::cout << '\t' << desiredCoordinateOrientation << std::endl;
// Create and set up an OrientImageFilter
using OrientImageFilterType = itk::OrientImageFilter<ImageType, ImageType>;
orienter->SetInput(reader->GetOutput());
orienter->UseImageDirectionOn();
orienter->SetDesiredCoordinateOrientation(desiredCoordinateOrientation);
// Create and set up a writer
using WriterType = itk::ImageFileWriter<ImageType>;
writer->SetFileName(outputImageFile);
writer->SetInput(orienter->GetOutput());
writer->Update();
return EXIT_SUCCESS;
}
Pointer
SmartPointer< Self > Pointer
Definition: itkAddImageFilter.h:93
itkImageFileReader.h
itkImage.h
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itk::ImageFileReader
Data source that reads image data from a single file.
Definition: itkImageFileReader.h:75
itk::ImageFileWriter
Writes image data to a single file.
Definition: itkImageFileWriter.h:90
itk::AnatomicalOrientation::PositiveEnum::INVALID
itkImageFileWriter.h
itk::CommonEnums::IOComponent::USHORT
itk::Image
Templated n-dimensional image class.
Definition: itkImage.h:88
New
static Pointer New()
itk::AnatomicalOrientation
Representations of anatomical orientations and methods to convert between conventions.
Definition: itkAnatomicalOrientation.h:53
itk::CommonEnums::IOPixel::SCALAR
itkOrientImageFilter.h
itk::AnatomicalOrientation::CreateFromPositiveStringEncoding
static AnatomicalOrientation CreateFromPositiveStringEncoding(std::string str)