/usr/include/ITK-4.9/itkBSplineDeformableTransformInitializer.hxx 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 | /*=========================================================================
*
* 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 itkBSplineDeformableTransformInitializer_hxx
#define itkBSplineDeformableTransformInitializer_hxx
#include "itkBSplineDeformableTransformInitializer.h"
namespace itk
{
template< typename TTransform, typename TImage >
BSplineDeformableTransformInitializer< TTransform, TImage >
::BSplineDeformableTransformInitializer()
{
this->m_GridSizeInsideTheImage.Fill(5);
}
template< typename TTransform, typename TImage >
void
BSplineDeformableTransformInitializer< TTransform, TImage >
::InitializeTransform() const
{
// Sanity check
if ( !this->m_Image )
{
itkExceptionMacro( << "Reference Image has not been set");
return;
}
if ( !this->m_Transform )
{
itkExceptionMacro( << "Transform has not been set");
return;
}
// If the image come from a filter, then update that filter.
if ( this->m_Image->GetSource() )
{
this->m_Image->GetSource()->Update();
}
typedef typename TransformType::RegionType RegionType;
typename RegionType::SizeType numberOfGridNodesOutsideTheImageSupport;
typename RegionType::SizeType totalGridSize;
numberOfGridNodesOutsideTheImageSupport.Fill(TransformType::SplineOrder);
totalGridSize = this->m_GridSizeInsideTheImage;
totalGridSize += numberOfGridNodesOutsideTheImageSupport;
RegionType gridRegion;
gridRegion.SetSize(totalGridSize);
typedef typename TransformType::SpacingType SpacingType;
const SpacingType & imageSpacing = this->m_Image->GetSpacing();
typedef typename TransformType::OriginType OriginType;
const OriginType & imageOrigin = this->m_Image->GetOrigin();
const typename TransformType::RegionType & imageRegion =
this->m_Image->GetLargestPossibleRegion();
typename ImageType::SizeType fixedImageSize = imageRegion.GetSize();
SpacingType gridSpacing;
SpacingType gridOriginShift;
const unsigned int orderShift = TransformType::SplineOrder / 2;
for ( unsigned int r = 0; r < SpaceDimension; r++ )
{
const unsigned int numberOfGridCells = this->m_GridSizeInsideTheImage[r] - 1;
const unsigned int numberOfImagePixels = fixedImageSize[r];
gridSpacing[r] = imageSpacing[r]
* static_cast< double >( numberOfImagePixels )
/ static_cast< double >( numberOfGridCells );
// Shift half image pixel to cover the image support
const double imageSupportShift = -imageSpacing[r] / 2.0;
// Shift by the number of extra grid cells required by
// the BSpline order.
const double gridSupportShift = -1.0 * gridSpacing[r] * orderShift;
// Combine both shifts. They are both aligned with the coordinate
// system of the grid. Direction has not been considered so far.
gridOriginShift[r] = gridSupportShift + imageSupportShift;
}
typename ImageType::DirectionType gridDirection = this->m_Image->GetDirection();
SpacingType gridOriginOffset = gridDirection * gridOriginShift;
OriginType gridOrigin = imageOrigin + gridOriginOffset;
this->m_Transform->SetGridRegion(gridRegion);
this->m_Transform->SetGridOrigin(gridOrigin);
this->m_Transform->SetGridSpacing(gridSpacing);
this->m_Transform->SetGridDirection(gridDirection);
}
template< typename TTransform, typename TImage >
void
BSplineDeformableTransformInitializer< TTransform, TImage >
::PrintSelf(std::ostream & os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Transform = " << std::endl;
if ( this->m_Transform )
{
os << indent << this->m_Transform << std::endl;
}
else
{
os << indent << "None" << std::endl;
}
os << indent << "Image = " << std::endl;
if ( this->m_Image )
{
os << indent << this->m_Image << std::endl;
}
else
{
os << indent << "None" << std::endl;
}
os << "Grid size inside the image " << this->m_GridSizeInsideTheImage << std::endl;
os << "Number of grid nodes inside the image " << this->m_NumberOfGridNodesInsideTheImage << std::endl;
}
} // namespace itk
#endif
|