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
|
/*
//
// Copyright 1997-2009 Torsten Rohlfing
//
// Copyright 2004-2010 SRI International
//
// This file is part of the Computational Morphometry Toolkit.
//
// http://www.nitrc.org/projects/cmtk/
//
// The Computational Morphometry Toolkit is free software: you can
// redistribute it and/or modify it under the terms of the GNU General Public
// License as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
//
// The Computational Morphometry Toolkit is distributed in the hope that it
// will be useful, but WITHOUT ANY WARRANTY; without even the implied
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with the Computational Morphometry Toolkit. If not, see
// <http://www.gnu.org/licenses/>.
//
// $Revision: 5436 $
//
// $LastChangedDate: 2018-12-10 19:01:20 -0800 (Mon, 10 Dec 2018) $
//
// $LastChangedBy: torstenrohlfing $
//
*/
#include <Segmentation/cmtkEntropyMinimizationIntensityCorrectionFunctionalBase.h>
#include <System/cmtkThreadPool.h>
#include <System/cmtkException.h>
#include <algorithm>
#ifdef CMTK_BUILD_DEMO
# include <IO/cmtkVolumeIO.h>
#endif // #ifdef CMTK_BUILD_DEMO
namespace cmtk
{
/** \addtogroup Segmentation */
//@{
void
EntropyMinimizationIntensityCorrectionFunctionalBase
::SetInputImage( UniformVolume::SmartConstPtr& inputImage )
{
this->m_InputImage = inputImage;
this->m_NumberOfPixels = this->m_InputImage->GetNumberOfPixels();
const Types::DataItemRange range = this->m_InputImage->GetData()->GetRange();
this->m_InputImageRange = range.Width();
if ( this->m_UseLogIntensities )
{
this->m_EntropyHistogram = HistogramType::SmartPtr( new LogHistogramType( this->m_NumberOfHistogramBins ) );
}
else
{
this->m_EntropyHistogram = HistogramType::SmartPtr( new HistogramType( this->m_NumberOfHistogramBins ) );
}
// extend value range to accomodate corrected intensities without overflows
this->m_EntropyHistogram->SetRange( Types::DataItemRange( range.m_LowerBound - this->m_InputImageRange, range.m_UpperBound + this->m_InputImageRange ) );
if ( this->m_ForegroundMask.size() )
this->UpdateCorrectionFactors();
this->m_BiasFieldAdd = FloatArray::Create( this->m_NumberOfPixels );
this->m_BiasFieldAdd->Fill( 0.0 );
this->m_BiasFieldMul = FloatArray::Create( this->m_NumberOfPixels );
this->m_BiasFieldAdd->Fill( 1.0 );
this->m_OutputImage = UniformVolume::SmartPtr( this->m_InputImage->CloneGrid() );
this->m_OutputImage->CreateDataArray( TYPE_FLOAT );
}
void
EntropyMinimizationIntensityCorrectionFunctionalBase
::SetForegroundMask( const UniformVolume& foregroundMask )
{
const size_t maskPixels = foregroundMask.GetNumberOfPixels();
if ( maskPixels != this->m_NumberOfPixels )
{
throw Exception( "Number of mask pixels does not match number of input image pixels." );
}
this->m_ForegroundMask.resize( maskPixels );
if ( (this->m_SamplingDensity > 0) && (this->m_SamplingDensity < 1) )
{
for ( size_t i = 0; i < maskPixels; ++i )
{
this->m_ForegroundMask[i] = (foregroundMask.GetDataAt( i ) > 0) && (MathUtil::UniformRandom() <= this->m_SamplingDensity);
}
}
else
{
for ( size_t i = 0; i < maskPixels; ++i )
{
this->m_ForegroundMask[i] = (foregroundMask.GetDataAt( i ) > 0);
}
}
if ( this->m_InputImage )
this->UpdateCorrectionFactors();
}
UniformVolume::SmartPtr&
EntropyMinimizationIntensityCorrectionFunctionalBase
::GetOutputImage( CoordinateVector& v, const bool foregroundOnly )
{
this->SetParamVector( v );
this->UpdateBiasFields( foregroundOnly );
this->UpdateOutputImage( foregroundOnly );
return this->m_OutputImage;
}
EntropyMinimizationIntensityCorrectionFunctionalBase::ReturnType
EntropyMinimizationIntensityCorrectionFunctionalBase
::EvaluateAt( CoordinateVector& v )
{
this->SetParamVector( v );
this->UpdateBiasFields();
this->UpdateOutputImage();
return this->Evaluate();
}
#ifdef CMTK_BUILD_DEMO
void
EntropyMinimizationIntensityCorrectionFunctionalBase
::SnapshotAt( CoordinateVector& v )
{
this->SetParamVector( v );
this->UpdateBiasFields();
static int it = 0;
this->UpdateOutputImage( false /*foregroundOnly*/ );
UniformVolume::SmartConstPtr slice = this->m_OutputImage->ExtractSlice( AXIS_Z, this->m_OutputImage->m_Dims[2] / 2 );
char path[PATH_MAX];
snprintf( path, PATH_MAX, "mrbias-%03d.nii", it++ );
VolumeIO::Write( *slice, path );
}
#endif
void
EntropyMinimizationIntensityCorrectionFunctionalBase
::UpdateOutputImage( const bool foregroundOnly )
{
ThreadPool& threadPool = ThreadPool::GetGlobalThreadPool();
const size_t numberOfTasks = 4 * threadPool.GetNumberOfThreads() - 3;
std::vector<UpdateOutputImageThreadParameters> taskParameters( numberOfTasks );
for ( size_t task = 0; task < numberOfTasks; ++task )
{
taskParameters[task].thisObject = this;
taskParameters[task].m_ForegroundOnly = foregroundOnly;
}
threadPool.Run( UpdateOutputImageThreadFunc, taskParameters );
}
void
EntropyMinimizationIntensityCorrectionFunctionalBase
::UpdateOutputImageThreadFunc( void *args, const size_t taskIdx, const size_t taskCnt, const size_t, const size_t )
{
UpdateOutputImageThreadParameters* threadParameters = static_cast<UpdateOutputImageThreadParameters*>( args );
Self* This = threadParameters->thisObject;
const Self* ThisConst = threadParameters->thisObject;
const UniformVolume* inputImage = ThisConst->m_InputImage;
TypedArray::SmartPtr outputData = This->m_OutputImage->GetData();
const size_t numberOfPixels = inputImage->GetNumberOfPixels();
const float* biasFieldPtrAdd = ThisConst->m_BiasFieldAdd->GetDataPtrTemplate();
const float* biasFieldPtrMul = ThisConst->m_BiasFieldMul->GetDataPtrTemplate();
Types::DataItem value;
for ( size_t ofs = taskIdx; ofs < numberOfPixels; ofs += taskCnt )
{
if ( !threadParameters->m_ForegroundOnly || ThisConst->m_ForegroundMask[ofs] )
{
if ( inputImage->GetDataAt( value, ofs ) )
{
outputData->Set( value * biasFieldPtrMul[ofs] + biasFieldPtrAdd[ofs], ofs );
}
else
{
outputData->SetPaddingAt( ofs );
}
}
else
{
outputData->SetPaddingAt( ofs );
}
}
}
} // namespace cmtk
|