/usr/include/ITK-4.9/itkJointHistogramMutualInformationGetValueAndDerivativeThreader.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 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 | /*=========================================================================
*
* 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 itkJointHistogramMutualInformationGetValueAndDerivativeThreader_hxx
#define itkJointHistogramMutualInformationGetValueAndDerivativeThreader_hxx
#include "itkJointHistogramMutualInformationGetValueAndDerivativeThreader.h"
namespace itk
{
template< typename TDomainPartitioner, typename TImageToImageMetric, typename TJointHistogramMetric >
JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >
::JointHistogramMutualInformationGetValueAndDerivativeThreader() :
m_JointHistogramMIPerThreadVariables( ITK_NULLPTR ),
m_JointAssociate( ITK_NULLPTR )
{}
template< typename TDomainPartitioner, typename TImageToImageMetric, typename TJointHistogramMetric >
JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >
::~JointHistogramMutualInformationGetValueAndDerivativeThreader()
{
delete[] this->m_JointHistogramMIPerThreadVariables;
}
template< typename TDomainPartitioner, typename TImageToImageMetric, typename TJointHistogramMetric >
void
JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >
::BeforeThreadedExecution()
{
Superclass::BeforeThreadedExecution();
/* Store the casted pointer to avoid dynamic casting in tight loops. */
this->m_JointAssociate = dynamic_cast< TJointHistogramMetric * >( this->m_Associate );
if( this->m_JointAssociate == ITK_NULLPTR )
{
itkExceptionMacro("Dynamic casting of associate pointer failed.");
}
const ThreadIdType numThreadsUsed = this->GetNumberOfThreadsUsed();
delete[] this->m_JointHistogramMIPerThreadVariables;
this->m_JointHistogramMIPerThreadVariables = new AlignedJointHistogramMIPerThreadStruct[ numThreadsUsed ];
for( ThreadIdType i = 0; i < numThreadsUsed; ++i )
{
if( this->m_JointHistogramMIPerThreadVariables[i].JointPDFInterpolator.IsNull() )
{
this->m_JointHistogramMIPerThreadVariables[i].JointPDFInterpolator = JointPDFInterpolatorType::New();
}
this->m_JointHistogramMIPerThreadVariables[i].JointPDFInterpolator->SetInputImage( this->m_JointAssociate->m_JointPDF );
if( this->m_JointHistogramMIPerThreadVariables[i].FixedImageMarginalPDFInterpolator.IsNull() )
{
this->m_JointHistogramMIPerThreadVariables[i].FixedImageMarginalPDFInterpolator = MarginalPDFInterpolatorType::New();
}
this->m_JointHistogramMIPerThreadVariables[i].FixedImageMarginalPDFInterpolator->SetInputImage( this->m_JointAssociate->m_FixedImageMarginalPDF );
if( this->m_JointHistogramMIPerThreadVariables[i].MovingImageMarginalPDFInterpolator.IsNull() )
{
this->m_JointHistogramMIPerThreadVariables[i].MovingImageMarginalPDFInterpolator = MarginalPDFInterpolatorType::New();
}
this->m_JointHistogramMIPerThreadVariables[i].MovingImageMarginalPDFInterpolator->SetInputImage( this->m_JointAssociate->m_MovingImageMarginalPDF );
}
}
template< typename TDomainPartitioner, typename TImageToImageMetric, typename TJointHistogramMetric >
void
JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >
::AfterThreadedExecution()
{
Superclass::AfterThreadedExecution();
// The Superclass does not generate a valid m_Value for this metric. We have to calculate it
// here, but only if there are 1 or more valid points. Otherwise the Superclass
// will have already set a default value and issued a warning.
if( this->m_JointAssociate->GetNumberOfValidPoints() > 0 )
{
this->m_JointAssociate->m_Value = this->m_JointAssociate->ComputeValue();
}
}
template< typename TDomainPartitioner, typename TImageToImageMetric, typename TJointHistogramMetric >
bool
JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >
::ProcessPoint( const VirtualIndexType &,
const VirtualPointType & virtualPoint,
const FixedImagePointType &,
const FixedImagePixelType & fixedImageValue,
const FixedImageGradientType &,
const MovingImagePointType &,
const MovingImagePixelType & movingImageValue,
const MovingImageGradientType & movingImageGradient,
MeasureType &,
DerivativeType & localDerivativeReturn,
const ThreadIdType threadId ) const
{
// check that the moving image sample is within the range of the true min
// and max, hence being within the moving image mask
if ( movingImageValue < this->m_JointAssociate->m_MovingImageTrueMin )
{
return false;
}
else if ( movingImageValue > this->m_JointAssociate->m_MovingImageTrueMax )
{
return false;
}
/** the scalingfactor is the MI specific scaling of the image gradient and jacobian terms */
InternalComputationValueType scalingfactor = NumericTraits< InternalComputationValueType >::ZeroValue(); // for scaling the jacobian terms
JointPDFPointType jointPDFpoint;
this->m_JointAssociate->ComputeJointPDFPoint( fixedImageValue, movingImageValue, jointPDFpoint );
// Make sure the point is inside th joint pdf.
if ( ! this->m_JointHistogramMIPerThreadVariables[threadId].JointPDFInterpolator->IsInsideBuffer( jointPDFpoint ) )
{
return false;
}
InternalComputationValueType jointPDFValue = this->m_JointHistogramMIPerThreadVariables[threadId].JointPDFInterpolator->Evaluate( jointPDFpoint );
SizeValueType ind = 1;
InternalComputationValueType dJPDF = this->ComputeJointPDFDerivative( jointPDFpoint, threadId , ind );
typename MarginalPDFType::PointType mind;
mind[0] = jointPDFpoint[ind];
InternalComputationValueType movingImagePDFValue =
this->m_JointHistogramMIPerThreadVariables[threadId].MovingImageMarginalPDFInterpolator->Evaluate(mind);
InternalComputationValueType dMmPDF =
this->ComputeMovingImageMarginalPDFDerivative( mind , threadId );
const InternalComputationValueType eps = 1.e-16;
if( jointPDFValue > eps && movingImagePDFValue > eps )
{
const InternalComputationValueType pRatio =
std::log(jointPDFValue)-std::log(movingImagePDFValue);
const InternalComputationValueType & term1 = dJPDF*pRatio;
const InternalComputationValueType & term2 = this->m_JointAssociate->m_Log2 * dMmPDF * jointPDFValue / movingImagePDFValue;
scalingfactor = ( term2 - term1 );
} // end if-block to check non-zero bin contribution
else
{
scalingfactor = NumericTraits< InternalComputationValueType >::ZeroValue();
}
/* Use a pre-allocated jacobian object for efficiency */
typedef JacobianType & JacobianReferenceType;
JacobianReferenceType jacobian = this->m_GetValueAndDerivativePerThreadVariables[threadId].MovingTransformJacobian;
JacobianReferenceType jacobianPositional = this->m_GetValueAndDerivativePerThreadVariables[threadId].MovingTransformJacobianPositional;
/** For dense transforms, this returns identity */
this->m_JointAssociate->GetMovingTransform()->
ComputeJacobianWithRespectToParametersCachedTemporaries(virtualPoint,
jacobian,
jacobianPositional);
for ( NumberOfParametersType par = 0; par < this->GetCachedNumberOfLocalParameters(); par++ )
{
InternalComputationValueType sum = NumericTraits< InternalComputationValueType >::ZeroValue();
for ( SizeValueType dim = 0; dim < TImageToImageMetric::MovingImageDimension; dim++ )
{
sum += scalingfactor * jacobian(dim, par) * movingImageGradient[dim];
}
localDerivativeReturn[par] = sum;
}
return true;
}
template< typename TDomainPartitioner, typename TImageToImageMetric, typename TJointHistogramMetric >
typename JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >::InternalComputationValueType
JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >
::ComputeFixedImageMarginalPDFDerivative( const MarginalPDFPointType & margPDFpoint,
const ThreadIdType threadId ) const
{
InternalComputationValueType offset = 0.5*this->m_JointPDFSpacing[0];
InternalComputationValueType eps = this->m_JointPDFSpacing[0];
MarginalPDFPointType leftpoint = margPDFpoint;
leftpoint[0] -= offset;
MarginalPDFPointType rightpoint = margPDFpoint;
rightpoint[0] += offset;
if (leftpoint[0] < eps )
{
leftpoint[0] = eps;
}
if (rightpoint[0] < eps )
{
rightpoint[0] = eps;
}
if (leftpoint[0] > 1.0 )
{
leftpoint[0] = 1.0;
}
if (rightpoint[0] > 1.0 )
{
rightpoint[0] = 1.0;
}
InternalComputationValueType delta = rightpoint[0]-leftpoint[0];
if ( delta > NumericTraits< InternalComputationValueType >::ZeroValue() )
{
InternalComputationValueType deriv = this->m_ThreaderFixedImageMarginalPDFInterpolator[threadId]->Evaluate(rightpoint) -
this->m_ThreaderFixedImageMarginalPDFInterpolator[threadId]->Evaluate(leftpoint);
return deriv/delta;
}
else
{
return NumericTraits< InternalComputationValueType >::ZeroValue();
}
}
template< typename TDomainPartitioner, typename TImageToImageMetric, typename TJointHistogramMetric >
typename JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >::InternalComputationValueType
JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >
::ComputeMovingImageMarginalPDFDerivative( const MarginalPDFPointType & margPDFpoint,
const ThreadIdType threadId ) const
{
InternalComputationValueType offset = 0.5 * this->m_JointAssociate->m_JointPDFSpacing[0];
InternalComputationValueType eps = this->m_JointAssociate->m_JointPDFSpacing[0];
MarginalPDFPointType leftpoint = margPDFpoint;
leftpoint[0] -= offset;
MarginalPDFPointType rightpoint = margPDFpoint;
rightpoint[0] += offset;
if( leftpoint[0] < eps )
{
leftpoint[0] = eps;
}
if( rightpoint[0] < eps )
{
rightpoint[0] = eps;
}
if( leftpoint[0] > 1.0 )
{
leftpoint[0] = 1.0;
}
if( rightpoint[0] > 1.0 )
{
rightpoint[0] = 1.0;
}
InternalComputationValueType delta = rightpoint[0] - leftpoint[0];
if ( delta > NumericTraits< InternalComputationValueType >::ZeroValue() )
{
InternalComputationValueType deriv =
this->m_JointHistogramMIPerThreadVariables[threadId].MovingImageMarginalPDFInterpolator->Evaluate(rightpoint) -
this->m_JointHistogramMIPerThreadVariables[threadId].MovingImageMarginalPDFInterpolator->Evaluate(leftpoint);
return deriv/delta;
}
else
{
return NumericTraits< InternalComputationValueType >::ZeroValue();
}
}
template< typename TDomainPartitioner, typename TImageToImageMetric, typename TJointHistogramMetric >
typename JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >::InternalComputationValueType
JointHistogramMutualInformationGetValueAndDerivativeThreader< TDomainPartitioner, TImageToImageMetric, TJointHistogramMetric >
::ComputeJointPDFDerivative( const JointPDFPointType & jointPDFpoint,
const ThreadIdType threadId,
const SizeValueType ind ) const
{
InternalComputationValueType offset = 0.5 * this->m_JointAssociate->m_JointPDFSpacing[ind];
InternalComputationValueType eps = this->m_JointAssociate->m_JointPDFSpacing[ind];
JointPDFPointType leftpoint = jointPDFpoint;
leftpoint[ind] -= offset;
JointPDFPointType rightpoint = jointPDFpoint;
rightpoint[ind] += offset;
if (leftpoint[ind] < eps )
{
leftpoint[ind] = eps;
}
if (rightpoint[ind] < eps )
{
rightpoint[ind] = eps;
}
if (leftpoint[ind] > 1.0 )
{
leftpoint[ind] = 1.0;
}
if (rightpoint[ind] > 1.0 )
{
rightpoint[ind] = 1.0;
}
InternalComputationValueType delta = rightpoint[ind] - leftpoint[ind];
InternalComputationValueType deriv = NumericTraits< InternalComputationValueType >::ZeroValue();
if ( delta > NumericTraits< InternalComputationValueType >::ZeroValue() )
{
deriv = this->m_JointHistogramMIPerThreadVariables[threadId].JointPDFInterpolator->Evaluate(rightpoint)-
this->m_JointHistogramMIPerThreadVariables[threadId].JointPDFInterpolator->Evaluate(leftpoint);
return deriv/delta;
}
return deriv;
}
} // end namespace itk
#endif
|