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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
|
/*=========================================================================
*
* 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.
*
*=========================================================================*/
#ifndef itkOrientImageFilter_h
#define itkOrientImageFilter_h
#include "itkPermuteAxesImageFilter.h"
#include "itkFlipImageFilter.h"
#include "itkSpatialOrientationAdapter.h"
#include <map>
#include <string>
namespace itk
{
/** \class OrientImageFilter
* \brief Permute axes and then flip images as needed to obtain
* agreement in coordinateOrientation codes.
*
* This class satisfies a common requirement in medical imaging, which
* is to properly orient a 3 dimensional image with respect to anatomical
* features. Due to the wide variety of hardware used to generate 3D images
* of human anatomy, and the even wider variety of image processing software,
* it is often necessary to re-orient image volume data.
*
* OrientImageFilter depends on a set of constants that describe all possible
* labeled according to the following scheme:
* Directions are labeled in terms of following pairs:
* - Left and Right (Subject's left and right)
* - Anterior and Posterior (Subject's front and back)
* - Inferior and Superior (Subject's bottom and top, i.e. feet and head)
*
* The initials of these directions are used in a 3 letter code in the
* enumerated type itk::SpatialOrientation::ValidCoordinateOrientationFlags.
* The initials are given fastest moving index first, second fastest second,
* third fastest third.
* Examples:
* - ITK_COORDINATE_ORIENTATION_RIP
* -# Right to Left varies fastest (0th pixel on Subject's right)
* -# Inferior to Superior varies second fastest
* -# Posterior to Anterior varies slowest.
* - ITK_COORDINATE_ORIENTATION_LSA
* -# Left to Right varies fastest (0th pixel on Subject's left)
* -# Superior to Inferior varies second fastest
* -# Anterior to Posterior varies slower
*
* In order to use this filter, you need to supply an input
* image, the current orientation of the input image (set with
* SetGivenCoordinateOrientation) and the desired orientation.
* (set with SetDesiredCoordinateOrientation).
* You may explicitly set the DesiredOrientation with
* SetDesiredCoordinateOrientation (if UseImageDirection is "off") or
* you can use the image's direction cosines to set the
* DesiredOrientation (if UseImageDirection is "on").
* When reading image files that define the coordinate orientation
* of the image, the current orientation is stored in the MetadataDictionary
* for the itk::Image object and the Image.Direction direction cosine
* matrix created from the file.
*
* As an example, if you wished to keep all images within your program in the
* orientation corresponding to the Analyze file format's 'CORONAL' orientation
* you could do something like the following
*
* \code
* // DEPRECATED -- using metadata for orientation is no longer supported
* //
* #include "itkAnalyzeImageIO.h"
* #include "itkMetaDataObject.h"
* #include "itkImage.h"
* #include "itkOrientImageFilter.h"
* typedef itk::Image<unsigned char,3> ImageType;
* typedef itk::ImageFileReader< TstImageType > ImageReaderType;
* ImageType::Pointer ReadAnalyzeFile(const char *path)
* {
* itk::AnalyzeImageIO::Pointer io = itk::AnalyzeImageIO::New();
* ImageReaderType::Pointer fileReader = ImageReaderType::New();
* fileReader->SetImageIO(io);
* fileReader->SetFileName(path);
* fileReader->Update();
* ImageType::Pointer rval = fileReader->GetOutput();
*
* // DEPRECATED -- use direction cosines
* //
* itk::SpatialOrientation::ValidCoordinateOrientationFlags fileOrientation;
* itk::ExposeMetaData<itk::SpatialOrientation::ValidCoordinateOrientationFlags>
* (rval->GetMetaDataDictionary(),itk::ITK_CoordinateOrientation,fileOrientation);
* itk::OrientImageFilter<ImageType,ImageType>::Pointer orienter =
* itk::OrientImageFilter<ImageType,ImageType>::New();
* orienter->SetGivenCoordinateOrientation(fileOrientation); // deprecated
*
* orienter->SetDesiredCoordinateOrientation(itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_RIP);
* orienter->SetInput(rval);
* orienter->Update();
* rval = orienter->GetOutput();
* return rval;
* }
* \endcode
*
* Or, using the direction cosines of the image,
* \code
* #include "itkAnalyzeImageIO.h"
* #include "itkImage.h"
* #include "itkOrientImageFilter.h"
* typedef itk::Image<unsigned char,3> ImageType;
* typedef itk::ImageFileReader< TstImageType > ImageReaderType;
* ImageType::Pointer ReadAnalyzeFile(const char *path)
* {
* itk::AnalyzeImageIO::Pointer io = itk::AnalyzeImageIO::New();
* ImageReaderType::Pointer fileReader = ImageReaderType::New();
* fileReader->SetImageIO(io);
* fileReader->SetFileName(path);
* fileReader->Update();
* ImageType::Pointer rval = fileReader->GetOutput();
*
* itk::OrientImageFilter<ImageType,ImageType>::Pointer orienter =
* itk::OrientImageFilter<ImageType,ImageType>::New();
* orienter->UseImageDirectionOn();
* orienter->SetDesiredCoordinateOrientation(itk::SpatialOrientation::ITK_COORDINATE_ORIENTATION_RIP);
* orienter->SetInput(rval);
* orienter->Update();
* rval = orienter->GetOutput();
* return rval;
* }
* \endcode
* \ingroup ITKImageGrid
*/
template< typename TInputImage, typename TOutputImage >
class ITK_TEMPLATE_EXPORT OrientImageFilter:
public ImageToImageFilter< TInputImage, TOutputImage >
{
public:
/** Standard class typedefs. */
typedef OrientImageFilter Self;
typedef ImageToImageFilter< TInputImage, TOutputImage > Superclass;
typedef SmartPointer< Self > Pointer;
typedef SmartPointer< const Self > ConstPointer;
/** Some convenient typedefs. */
typedef TInputImage InputImageType;
typedef typename InputImageType::Pointer InputImagePointer;
typedef typename InputImageType::ConstPointer InputImageConstPointer;
typedef typename InputImageType::RegionType InputImageRegionType;
typedef typename InputImageType::PixelType InputImagePixelType;
typedef TOutputImage OutputImageType;
typedef typename OutputImageType::Pointer OutputImagePointer;
typedef typename OutputImageType::ConstPointer OutputImageConstPointer;
typedef typename OutputImageType::RegionType OutputImageRegionType;
typedef typename OutputImageType::PixelType OutputImagePixelType;
typedef SpatialOrientation::ValidCoordinateOrientationFlags
CoordinateOrientationCode;
/** Axes permuter type. */
typedef PermuteAxesImageFilter< TInputImage > PermuterType;
typedef typename PermuterType::PermuteOrderArrayType PermuteOrderArrayType;
/** Axes flipper type. */
typedef FlipImageFilter< TInputImage > FlipperType;
typedef typename FlipperType::FlipAxesArrayType FlipAxesArrayType;
/** ImageDimension constants */
itkStaticConstMacro(InputImageDimension, unsigned int,
TInputImage::ImageDimension);
itkStaticConstMacro(OutputImageDimension, unsigned int,
TOutputImage::ImageDimension);
/** Standard New method. */
itkNewMacro(Self);
/** Runtime information support. */
itkTypeMacro(OrientImageFilter, ImageToImageFilter);
/** Set/Get the orientation codes to define the coordinate transform. */
itkGetEnumMacro(GivenCoordinateOrientation, CoordinateOrientationCode);
void SetGivenCoordinateOrientation(CoordinateOrientationCode newCode);
inline void SetGivenCoordinateDirection(const typename TInputImage::DirectionType & GivenDirection)
{
SetGivenCoordinateOrientation(
itk::SpatialOrientationAdapter().FromDirectionCosines(GivenDirection) );
}
itkGetEnumMacro(DesiredCoordinateOrientation, CoordinateOrientationCode);
void SetDesiredCoordinateOrientation(CoordinateOrientationCode newCode);
inline void SetDesiredCoordinateDirection(const typename TOutputImage::DirectionType & DesiredDirection)
{
SetDesiredCoordinateOrientation(
itk::SpatialOrientationAdapter().FromDirectionCosines(DesiredDirection) );
}
/** Controls how the GivenCoordinateOrientation is determined.
* If set to On, the direction cosines determine the coordinate
* orientation. If set to Off, the user must use the
* SetGivenCoordinateOrientation method to establish the
* orientation. For compatibility with the original API, the default value
* is Off. */
itkBooleanMacro(UseImageDirection);
itkGetConstMacro(UseImageDirection, bool);
itkSetMacro(UseImageDirection, bool);
/** Get axes permute order. */
itkGetConstReferenceMacro(PermuteOrder, PermuteOrderArrayType);
/** Get flip axes. */
itkGetConstReferenceMacro(FlipAxes, FlipAxesArrayType);
/** Convenience methods to set desired slice orientation
* These methods allow a limited selection of slice orientations
* without having to specify the SpatialOrientation.
*
* SetDesiredCoordinateOrientationToAxial is equivalent to
* SetDesiredCoordinateOrientation (ITK_COORDINATE_ORIENTATION_RAI).
*
* SetDesiredCoordinateOrientationToCoronal is equivalent to
* SetDesiredCoordinateOrientation (ITK_COORDINATE_ORIENTATION_RSA).
*
* SetDesiredCoordinateOrientationToSagittal is equivalent to
* SetDesiredCoordinateOrientation (ITK_COORDINATE_ORIENTATION_ASL).
*/
void SetDesiredCoordinateOrientationToAxial()
{
this->SetDesiredCoordinateOrientation (SpatialOrientation::ITK_COORDINATE_ORIENTATION_RAI);
}
void SetDesiredCoordinateOrientationToCoronal()
{
this->SetDesiredCoordinateOrientation (SpatialOrientation::ITK_COORDINATE_ORIENTATION_RSA);
}
void SetDesiredCoordinateOrientationToSagittal()
{
this->SetDesiredCoordinateOrientation (SpatialOrientation::ITK_COORDINATE_ORIENTATION_ASL);
}
/** OrientImageFilter produces an image which is a different
* dimensionality than its input image, in general. As such,
* OrientImageFilter needs to provide an implementation for
* GenerateOutputInformation() in order to inform the pipeline
* execution model. The original documentation of this method is
* below.
* \sa ProcessObject::GenerateOutputInformaton() */
virtual void GenerateOutputInformation() ITK_OVERRIDE;
#ifdef ITK_USE_CONCEPT_CHECKING
// Begin concept checking
itkConceptMacro( InputConvertibleToOutput,
( Concept::Convertible< InputImagePixelType, OutputImagePixelType > ) );
itkConceptMacro( SameDimension,
( Concept::SameDimension< itkGetStaticConstMacro(InputImageDimension),
itkGetStaticConstMacro(OutputImageDimension) > ) );
itkConceptMacro( DimensionShouldBe3,
( Concept::SameDimension< itkGetStaticConstMacro(InputImageDimension), 3 > ) );
// End concept checking
#endif
protected:
OrientImageFilter();
~OrientImageFilter() ITK_OVERRIDE {}
void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
/** OrientImageFilter needs the entire input be
* available. Thus, it needs to provide an implementation of
* GenerateInputRequestedRegion(). */
void GenerateInputRequestedRegion() ITK_OVERRIDE;
/** OrientImageFilter will produce the entire output. */
void EnlargeOutputRequestedRegion( DataObject *itkNotUsed(output) ) ITK_OVERRIDE;
/*** Member functions used by GenerateData: */
void DeterminePermutationsAndFlips(const SpatialOrientation::ValidCoordinateOrientationFlags fixed_orient,
const SpatialOrientation::ValidCoordinateOrientationFlags moving_orient);
/** Returns true if a permute is required. Returns false otherwise. */
bool NeedToPermute();
/** Returns true if flipping is required. Returns false otherwise. */
bool NeedToFlip();
/** Single-threaded version of GenerateData. This filter delegates
* to PermuteAxesImageFilter and FlipImageFilter. */
void GenerateData() ITK_OVERRIDE;
private:
ITK_DISALLOW_COPY_AND_ASSIGN(OrientImageFilter);
std::string GetMajorAxisFromPatientRelativeDirectionCosine(double x, double y, double z);
CoordinateOrientationCode m_GivenCoordinateOrientation;
CoordinateOrientationCode m_DesiredCoordinateOrientation;
bool m_UseImageDirection;
PermuteOrderArrayType m_PermuteOrder;
FlipAxesArrayType m_FlipAxes;
std::map< std::string, CoordinateOrientationCode > m_StringToCode;
std::map< CoordinateOrientationCode, std::string > m_CodeToString;
}; // end of class
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkOrientImageFilter.hxx"
#endif
#endif
|