/usr/include/ITK-4.9/itkTransformToDisplacementFieldSource.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*=========================================================================
*
* 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 itkTransformToDisplacementFieldSource_h
#define itkTransformToDisplacementFieldSource_h
#include "itkTransform.h"
#include "itkImageSource.h"
namespace itk
{
/** \class TransformToDisplacementFieldSource
* \brief Generate a displacement field from a coordinate transform
*
* Output information (spacing, size and direction) for the output
* image should be set. This information has the normal defaults of
* unit spacing, zero origin and identity direction. Optionally, the
* output information can be obtained from a reference image, with
* SetOutputParametersFromImage.
*
* Since this filter produces an image which is a different size than
* its input, it needs to override several of the methods defined
* in ProcessObject in order to properly manage the pipeline execution model.
* In particular, this filter overrides
* ProcessObject::GenerateInputRequestedRegion() and
* ProcessObject::GenerateOutputInformation().
*
* This filter is implemented as a multithreaded filter. It provides a
* ThreadedGenerateData() method for its implementation.
*
* \author Marius Staring, Leiden University Medical Center, The Netherlands.
*
* This class was taken from the Insight Journal paper:
* http://hdl.handle.net/1926/1387
*
* \deprecated Renamed to TransformToDisplacementFieldFilter when transitioned
* out of Review.
*
* \sa TransformToDisplacementFieldFilter
*
* \ingroup GeometricTransform
* \ingroup ITKDeprecated
*/
template< typename TOutputImage,
typename TTransformPrecisionType = double >
class TransformToDisplacementFieldSource:
public ImageSource< TOutputImage >
{
public:
/** Standard class typedefs. */
typedef TransformToDisplacementFieldSource Self;
typedef ImageSource< TOutputImage > Superclass;
typedef SmartPointer< Self > Pointer;
typedef SmartPointer< const Self > ConstPointer;
typedef TOutputImage OutputImageType;
typedef typename OutputImageType::Pointer OutputImagePointer;
typedef typename OutputImageType::ConstPointer OutputImageConstPointer;
typedef typename OutputImageType::RegionType OutputImageRegionType;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(TransformToDisplacementFieldSource, ImageSource);
/** Number of dimensions. */
itkStaticConstMacro(ImageDimension, unsigned int,
TOutputImage::ImageDimension);
/** Typedefs for transform. */
typedef Transform< TTransformPrecisionType,
itkGetStaticConstMacro(ImageDimension),
itkGetStaticConstMacro(ImageDimension) > TransformType;
typedef typename TransformType::ConstPointer TransformPointerType;
/** Typedefs for output image. */
typedef typename OutputImageType::PixelType PixelType;
typedef typename PixelType::ValueType PixelValueType;
typedef typename OutputImageType::RegionType RegionType;
typedef typename RegionType::SizeType SizeType;
typedef typename OutputImageType::IndexType IndexType;
typedef typename OutputImageType::PointType PointType;
typedef typename OutputImageType::SpacingType SpacingType;
typedef typename OutputImageType::PointType OriginType;
typedef typename OutputImageType::DirectionType DirectionType;
/** Typedefs for base image. */
typedef ImageBase< itkGetStaticConstMacro(ImageDimension) > ImageBaseType;
/** Get/Set the coordinate transformation.
* Set the coordinate transform to use for resampling. Note that this must
* be in physical coordinates and it is the output-to-input transform, NOT
* the input-to-output transform that you might naively expect. By default
* the filter uses an Identity transform. You must provide a different
* transform here, before attempting to run the filter, if you do not want to
* use the default Identity transform. */
itkSetConstObjectMacro(Transform, TransformType);
itkGetConstObjectMacro(Transform, TransformType);
/** Set the size of the output image. */
virtual void SetOutputSize(const SizeType & size);
/** Get the size of the output image. */
virtual const SizeType & GetOutputSize();
/** Set the start index of the output largest possible region.
* The default is an index of all zeros. */
virtual void SetOutputIndex(const IndexType & index);
/** Get the start index of the output largest possible region. */
virtual const IndexType & GetOutputIndex();
/** Set the region of the output image. */
itkSetMacro(OutputRegion, OutputImageRegionType);
/** Get the region of the output image. */
itkGetConstReferenceMacro(OutputRegion, OutputImageRegionType);
/** Set the output image spacing. */
itkSetMacro(OutputSpacing, SpacingType);
virtual void SetOutputSpacing(const double *values);
/** Get the output image spacing. */
itkGetConstReferenceMacro(OutputSpacing, SpacingType);
/** Set the output image origin. */
itkSetMacro(OutputOrigin, OriginType);
virtual void SetOutputOrigin(const double *values);
/** Get the output image origin. */
itkGetConstReferenceMacro(OutputOrigin, OriginType);
/** Set the output direction cosine matrix. */
itkSetMacro(OutputDirection, DirectionType);
itkGetConstReferenceMacro(OutputDirection, DirectionType);
/** Helper method to set the output parameters based on this image */
void SetOutputParametersFromImage(const ImageBaseType *image);
/** DisplacementFieldImageFilter produces a vector image. */
virtual void GenerateOutputInformation();
/** Just checking if transform is set. */
virtual void BeforeThreadedGenerateData();
/** Compute the Modified Time based on changes to the components. */
ModifiedTimeType GetMTime() const;
#ifdef ITK_USE_CONCEPT_CHECKING
// Begin concept checking
itkStaticConstMacro(PixelDimension, unsigned int,
PixelType::Dimension);
itkConceptMacro( SameDimensionCheck,
( Concept::SameDimension< ImageDimension, PixelDimension > ) );
// End concept checking
#endif
protected:
TransformToDisplacementFieldSource();
~TransformToDisplacementFieldSource(void) {}
void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
/** TransformToDisplacementFieldSource can be implemented as a multithreaded
* filter.
*/
void ThreadedGenerateData(
const OutputImageRegionType & outputRegionForThread,
ThreadIdType threadId);
/** Default implementation for resampling that works for any
* transformation type.
*/
void NonlinearThreadedGenerateData(
const OutputImageRegionType & outputRegionForThread,
ThreadIdType threadId);
/** Faster implementation for resampling that works for with linear
* transformation types.
*/
void LinearThreadedGenerateData(
const OutputImageRegionType & outputRegionForThread,
ThreadIdType threadId);
private:
TransformToDisplacementFieldSource(const Self &) ITK_DELETE_FUNCTION;
void operator=(const Self &) ITK_DELETE_FUNCTION;
/** Member variables. */
RegionType m_OutputRegion; // region of the output image
TransformPointerType m_Transform; // Coordinate transform to use
SpacingType m_OutputSpacing; // output image spacing
OriginType m_OutputOrigin; // output image origin
DirectionType m_OutputDirection; // output image direction cosines
}; // end class
// TransformToDisplacementFieldSource
} // end namespace itk
#ifndef ITK_MANUAL_INSTANTIATION
#include "itkTransformToDisplacementFieldSource.hxx"
#endif
#endif // end #ifndef itkTransformToDisplacementFieldSource_h
|