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
|
/*=========================================================================
*
* 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 itkMultiphaseDenseFiniteDifferenceImageFilter_hxx
#define itkMultiphaseDenseFiniteDifferenceImageFilter_hxx
#include "itkMultiphaseDenseFiniteDifferenceImageFilter.h"
namespace itk
{
template< typename TInputImage, typename TFeatureImage, typename TOutputImage,
typename TFunction, typename TIdCell >
void
MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage,
TOutputImage, TFunction, TIdCell >
::PrintSelf(std::ostream & os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "m_ReinitializeCounter: " << m_ReinitializeCounter << std::endl;
}
template< typename TInputImage, typename TFeatureImage, typename TOutputImage,
typename TFunction, typename TIdCell >
void
MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage,
TOutputImage, TFunction, TIdCell >
::CopyInputToOutput()
{
OutputImagePointer output = this->GetOutput();
output->FillBuffer(0);
for ( IdCellType i = 0; i < this->m_FunctionCount; i++ )
{
const InputImagePointer input = this->m_LevelSet[i];
const InputPointType origin = input->GetOrigin();
const InputSizeType size = input->GetBufferedRegion().GetSize();
// Find the index of the target image where this Level Set
// should be pasted.
OutputIndexType start;
output->TransformPhysicalPointToIndex(origin, start);
OutputRegionType region;
region.SetSize(size);
region.SetIndex(start);
if ( !input || !output )
{
itkExceptionMacro (<< "Either input and/or output is ITK_NULLPTR.");
}
ImageRegionConstIterator< InputImageType > in( input, input->GetBufferedRegion() );
ImageRegionIterator< OutputImageType > out(output, region);
// Fill the output pointer
OutputPixelType p = static_cast< OutputPixelType >( this->m_Lookup[i] );
in.GoToBegin();
out.GoToBegin();
while ( !out.IsAtEnd() )
{
if ( in.Get() < 0 )
{
out.Value() = p;
}
++in;
++out;
}
}
}
template< typename TInputImage, typename TFeatureImage, typename TOutputImage,
typename TFunction, typename TIdCell >
void
MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage,
TOutputImage, TFunction, TIdCell >
::AllocateUpdateBuffer()
{
for ( IdCellType i = 0; i < this->m_FunctionCount; i++ )
{
InputImagePointer input = this->m_LevelSet[i];
InputRegionType region = input->GetLargestPossibleRegion();
m_UpdateBuffers[i]->CopyInformation(input);
m_UpdateBuffers[i]->SetRegions(region);
m_UpdateBuffers[i]->Allocate();
}
}
template< typename TInputImage, typename TFeatureImage, typename TOutputImage,
typename TFunction, typename TIdCell >
typename MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage,
TOutputImage, TFunction, TIdCell >::TimeStepType
MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage,
TOutputImage, TFunction, TIdCell >
::CalculateChange()
{
TimeStepType timeStep = NumericTraits< TimeStepType >::max();
for ( IdCellType i = 0; i < this->m_FunctionCount; i++ )
{
InputImagePointer levelset = this->m_LevelSet[i];
// Get the FiniteDifferenceFunction to use in calculations.
const FiniteDifferenceFunctionPointer df = this->m_DifferenceFunctions[i];
const OutputSizeType radius = df->GetRadius();
// Break the input into a series of regions. The first region is free
// of boundary conditions, the rest with boundary conditions. We operate
// on the levelset region because input has been copied to output.
FaceCalculatorType faceCalculator;
FaceListType faceList =
faceCalculator (levelset, levelset->GetLargestPossibleRegion(), radius);
void *globalData;
// Ask the function object for a pointer to a data structure it
// will use to manage any global values it needs. We'll pass this
// back to the function object at each calculation and then
// again so that the function object can use it to determine a
// time step for this iteration.
globalData = df->GetGlobalDataPointer();
typename FaceListType::iterator fIt;
for ( fIt = faceList.begin(); fIt != faceList.end(); ++fIt )
{
// Process the non-boundary region.
NeighborhoodIteratorType nD (radius, levelset, *fIt);
ImageRegionIterator< InputImageType > nU (m_UpdateBuffers[i], *fIt);
nD.GoToBegin();
nU.GoToBegin();
while ( !nD.IsAtEnd() )
{
nU.Value() = df->ComputeUpdate (nD, globalData);
++nD;
++nU;
}
}
// Ask the finite difference function to compute the time step for
// this iteration. We give it the global data pointer to use, then
// ask it to free the global data memory.
TimeStepType dt = df->ComputeGlobalTimeStep (globalData);
df->ReleaseGlobalDataPointer (globalData);
if ( dt < timeStep )
{
timeStep = dt;
}
}
timeStep = 0.08; // FIXME !!! After all this work, assign a constant !!! Why
// ??
return timeStep;
}
template< typename TInputImage, typename TFeatureImage, typename TOutputImage,
typename TFunction, typename TIdCell >
void
MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage,
TOutputImage, TFunction, TIdCell >
::SetFunctionCount(const IdCellType & n)
{
this->Superclass::SetFunctionCount(n);
this->m_UpdateBuffers.resize(n, ITK_NULLPTR);
for ( IdCellType i = 0; i < this->m_FunctionCount; i++ )
{
this->m_UpdateBuffers[i] = InputImageType::New();
}
}
template< typename TInputImage, typename TFeatureImage, typename TOutputImage,
typename TFunction, typename TIdCell >
void
MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage,
TOutputImage, TFunction, TIdCell >
::ApplyUpdate(TimeStepType dt)
{
double rms_change_accumulator = 0;
double den = 0;
IdCellType i;
InputPixelType val;
for ( i = 0; i < this->m_FunctionCount; i++ )
{
const double img_size = this->m_LevelSet[i]->GetLargestPossibleRegion().GetNumberOfPixels();
den += img_size;
}
// this must never occur!
if ( den < itk::Math::eps )
{
itkExceptionMacro("den = 0.");
}
// Updating the output image
for ( i = 0; i < this->m_FunctionCount; i++ )
{
//NOTE: here this->m_LevelSet[i]->GetRequestedRegion() is used and
// previously
// it is this->m_LevelSet[i]->GetLargestPossibleRegion()
InputRegionType region = this->m_LevelSet[i]->GetRequestedRegion();
ImageRegionIterator< InputImageType > u(m_UpdateBuffers[i], region);
ImageRegionIterator< InputImageType > o(this->m_LevelSet[i], region);
u.GoToBegin();
o.GoToBegin();
while ( !u.IsAtEnd() )
{
val = static_cast< InputPixelType >( dt ) * u.Get();
o.Set(o.Value() + val);
rms_change_accumulator += static_cast< double >( itk::Math::sqr(val) );
++u;
++o;
}
if ( this->GetElapsedIterations() % this->m_ReinitializeCounter == 0 )
{
ThresholdFilterPointer thresh = ThresholdFilterType::New();
thresh->SetLowerThreshold( NumericTraits< InputPixelType >::NonpositiveMin() );
thresh->SetUpperThreshold(0);
thresh->SetInsideValue(1);
thresh->SetOutsideValue(0);
thresh->SetInput(this->m_LevelSet[i]);
thresh->Update();
MaurerPointer maurer = MaurerType::New();
maurer->SetInput( thresh->GetOutput() );
maurer->SetSquaredDistance(false);
maurer->SetUseImageSpacing(this->m_UseImageSpacing);
maurer->SetInsideIsPositive(false);
maurer->Update();
ImageRegionIterator< InputImageType > it (maurer->GetOutput(), region);
rms_change_accumulator = 0;
o.GoToBegin();
it.GoToBegin();
while ( !o.IsAtEnd() )
{
val = it.Value();
rms_change_accumulator += static_cast< double >( itk::Math::sqr(o.Value() - val) );
o.Set(val);
++o;
++it;
}
}
}
this->SetRMSChange( std::sqrt(rms_change_accumulator / den) );
}
template< typename TInputImage, typename TFeatureImage, typename TOutputImage,
typename TFunction, typename TIdCell >
void
MultiphaseDenseFiniteDifferenceImageFilter< TInputImage, TFeatureImage,
TOutputImage, TFunction, TIdCell >
::PostProcessOutput()
{
this->CopyInputToOutput();
}
} // end namespace itk
#endif
|