1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* 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
//
// The \doxygen{ChangeInformationImageFilter} is commonly used to modify
// image metadata such as origin, spacing, and orientation. This filter
// leaves intact the pixel data of the image. This filter should be used
// with extreme caution, since it can easily change information that is
// critical for the safety of many medical image analysis tasks, such as
// measurement the volume of a tumor, or providing guidance for surgery.
//
// The following example illustrates the use of the ChangeInformation image
// filter in the context of generating synthetic inputs for image registration
// tests.
//
// \index{itk::ChangeInformationImageFilter}
//
// Software Guide : EndLatex
#include "itkImage.h"
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"
#include "itkVersor.h"
// Software Guide : BeginLatex
//
// The header file corresponding to this filter should be included first.
//
// \index{itk::ChangeInformationImageFilter!header}
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
#include "itkChangeInformationImageFilter.h"
// Software Guide : EndCodeSnippet
int main( int argc, char * argv[] )
{
if( argc < 3 )
{
std::cerr << "Usage: " << std::endl;
std::cerr << argv[0] << " inputImageFile outputImageFile" << std::endl;
std::cerr << " [scalingFactor] [translationX translationY translationZ]" << std::endl;
std::cerr << " [rotationZinDegrees]" << std::endl;
return EXIT_FAILURE;
}
// Software Guide : BeginLatex
//
// Then the pixel and image types of the input and output must be defined.
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef unsigned char PixelType;
const unsigned int Dimension = 3;
typedef itk::Image< PixelType, Dimension > ImageType;
// Software Guide : EndCodeSnippet
typedef itk::ImageFileReader< ImageType > ReaderType;
typedef itk::ImageFileWriter< ImageType > WriterType;
ReaderType::Pointer reader = ReaderType::New();
WriterType::Pointer writer = WriterType::New();
reader->SetFileName( argv[1] );
writer->SetFileName( argv[2] );
// Software Guide : BeginLatex
//
// Using the image types, it is now possible to define the filter type
// and create the filter object.
//
// \index{itk::ChangeInformationImageFilter!instantiation}
// \index{itk::ChangeInformationImageFilter!New()}
// \index{itk::ChangeInformationImageFilter!Pointer}
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
typedef itk::ChangeInformationImageFilter< ImageType > FilterType;
FilterType::Pointer filter = FilterType::New();
// Software Guide : EndCodeSnippet
//
// The reader must be triggered in order to make possible to gather
// information from the input image.
//
try
{
reader->Update();
}
catch( itk::ExceptionObject & excp )
{
std::cerr << excp << std::endl;
return EXIT_FAILURE;
}
ImageType::ConstPointer inputImage = reader->GetOutput();
ImageType::PointType origin = inputImage->GetOrigin();
ImageType::SpacingType spacing = inputImage->GetSpacing();
ImageType::DirectionType direction = inputImage->GetDirection();
if( argc > 3 )
{
double scale = atof( argv[3] );
for(unsigned int i=0; i<Dimension; i++)
{
spacing[i] *= scale;
}
filter->SetOutputSpacing( spacing );
filter->ChangeSpacingOn();
}
if( argc > 6 )
{
ImageType::PointType::VectorType translation;
translation[0] = atof ( argv[4] );
translation[1] = atof ( argv[5] );
translation[2] = atof ( argv[6] );
origin += translation;
filter->SetOutputOrigin( origin );
filter->ChangeOriginOn();
}
if( argc > 7 )
{
double additionalAngle = atof( argv[7] );
itk::Versor< itk::SpacePrecisionType > rotation;
double angleInRadians = additionalAngle * itk::Math::pi / 180.0;
rotation.SetRotationAroundZ( angleInRadians );
ImageType::DirectionType newDirection = direction * rotation.GetMatrix();
filter->SetOutputDirection( newDirection );
filter->ChangeDirectionOn();
}
// Software Guide : BeginLatex
//
// The input to the filter can be taken from any other filter, for example
// a reader. The output can be passed down the pipeline to other filters,
// for example, a writer. An update call on any downstream filter will
// trigger the execution of the median filter.
//
// \index{itk::ChangeInformationImageFilter!SetInput()}
// \index{itk::ChangeInformationImageFilter!GetOutput()}
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
filter->SetInput( reader->GetOutput() );
writer->SetInput( filter->GetOutput() );
// Software Guide : EndCodeSnippet
try
{
writer->Update();
}
catch( itk::ExceptionObject & excp )
{
std::cerr << excp << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
|