X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=registration%2FclitkShapedBLUTSpatioTemporalDeformableTransform.txx;h=ea10c73d98757135a3408601e4d26f9fae9a2f05;hb=6046bef473eb16b68831e23d3e014b49f42185c6;hp=5a4b9503cdf33cbba22f925e7f40bc5f20e04efe;hpb=573d80d0f7a17607d2ee883c21c940c0ba020282;p=clitk.git diff --git a/registration/clitkShapedBLUTSpatioTemporalDeformableTransform.txx b/registration/clitkShapedBLUTSpatioTemporalDeformableTransform.txx old mode 100755 new mode 100644 index 5a4b950..ea10c73 --- a/registration/clitkShapedBLUTSpatioTemporalDeformableTransform.txx +++ b/registration/clitkShapedBLUTSpatioTemporalDeformableTransform.txx @@ -32,7 +32,11 @@ namespace clitk // Constructor with default arguments template ShapedBLUTSpatioTemporalDeformableTransform +#if ITK_VERSION_MAJOR >= 4 + ::ShapedBLUTSpatioTemporalDeformableTransform():Superclass(0) +#else ::ShapedBLUTSpatioTemporalDeformableTransform():Superclass(OutputDimension,0) +#endif { unsigned int i; @@ -379,7 +383,11 @@ namespace clitk // Get the number of parameters template +#if ITK_VERSION_MAJOR >= 4 + typename ShapedBLUTSpatioTemporalDeformableTransform::NumberOfParametersType +#else unsigned int +#endif ShapedBLUTSpatioTemporalDeformableTransform ::GetNumberOfParameters(void) const { @@ -802,11 +810,19 @@ namespace clitk //===================================== //JV Wrap jacobian into OutputDimension X Vectorial images //===================================== +#if ITK_VERSION_MAJOR >= 4 + this->m_SharedDataBSplineJacobian.set_size( OutputDimension, this->GetNumberOfParameters() ); +#else this->m_Jacobian.set_size( OutputDimension, this->GetNumberOfParameters() ); +#endif // Use memset to set the memory // JV four rows of three comps of parameters +#if ITK_VERSION_MAJOR >= 4 + JacobianPixelType * jacobianDataPointer = reinterpret_cast(this->m_SharedDataBSplineJacobian.data_block()); +#else JacobianPixelType * jacobianDataPointer = reinterpret_cast(this->m_Jacobian.data_block()); +#endif memset(jacobianDataPointer, 0, OutputDimension*numberOfPixels*sizeof(JacobianPixelType)); for (unsigned int j=0; j PasteImageFilterType; typedef clitk::ExtractImageFilter ExtractImageFilterType; typedef clitk::LinearCombinationImageFilter LinearCombinationFilterType; - typedef itk::MultiplyByConstantImageFilter MultiplicationFilterType; // Regions typename CoefficientImageType::RegionType sourceRegion=m_PaddedCoefficientImage->GetLargestPossibleRegion(); @@ -2376,11 +2391,17 @@ namespace clitk // JV weights are identical as for transformpoint, could be done simultaneously in metric!!!! // Compute the Jacobian in one position template +#if ITK_VERSION_MAJOR >= 4 + void + ShapedBLUTSpatioTemporalDeformableTransform + ::ComputeJacobianWithRespectToParameters( const InputPointType & point, JacobianType & jacobian) const +#else const typename ShapedBLUTSpatioTemporalDeformableTransform ::JacobianType & ShapedBLUTSpatioTemporalDeformableTransform ::GetJacobian( const InputPointType & point ) const +#endif { //======================================================== @@ -2476,7 +2497,12 @@ namespace clitk if(m_Mask && !(m_Mask->IsInside(point) ) ) { // Outside: no (deformable) displacement +#if ITK_VERSION_MAJOR >= 4 + jacobian = m_SharedDataBSplineJacobian; + return; +#else return this->m_Jacobian; +#endif } // Get index @@ -2486,7 +2512,12 @@ namespace clitk // we assume zero displacement and return the input point if ( !this->InsideValidRegion( m_Index ) ) { +#if ITK_VERSION_MAJOR >= 4 + jacobian = m_SharedDataBSplineJacobian; + return; +#else return this->m_Jacobian; +#endif } // Compute interpolation weights @@ -2654,7 +2685,11 @@ namespace clitk } // Return the result +#if ITK_VERSION_MAJOR >= 4 + jacobian = m_SharedDataBSplineJacobian; +#else return this->m_Jacobian; +#endif }