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 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
|
/*=========================================================================
*
* 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 itkAdvancedImageMomentsCalculator_hxx
#define itkAdvancedImageMomentsCalculator_hxx
#include "itkAdvancedImageMomentsCalculator.h"
#include <vnl/algo/vnl_real_eigensystem.h>
#include <vnl/algo/vnl_symmetric_eigensystem.h>
#include "itkImageRegionConstIteratorWithIndex.h"
#include <cassert>
namespace itk
{
//----------------------------------------------------------------------
// Construct without computing moments
template <typename TImage>
AdvancedImageMomentsCalculator<TImage>::AdvancedImageMomentsCalculator()
{
m_Valid = false;
m_Image = nullptr;
m_SpatialObjectMask = nullptr;
m_M0 = ScalarType{};
m_M1.Fill(typename VectorType::ValueType{});
m_M2.Fill(typename MatrixType::ValueType{});
m_Cg.Fill(typename VectorType::ValueType{});
m_Cm.Fill(typename MatrixType::ValueType{});
m_Pm.Fill(typename VectorType::ValueType{});
m_Pa.Fill(typename MatrixType::ValueType{});
/** Threading related variables. */
this->m_UseMultiThread = true;
this->m_Threader = MultiThreaderBase::New();
/** Initialize the m_ThreaderParameters. */
this->m_ThreaderParameters.st_Self = this;
// Multi-threading structs
this->m_CenterOfGravityUsesLowerThreshold = false;
this->m_NumberOfSamplesForCenteredTransformInitialization = 10000;
this->m_LowerThresholdForCenterGravity = 500;
}
/**
* ************************* InitializeThreadingParameters ************************
*/
template <typename TImage>
void
AdvancedImageMomentsCalculator<TImage>::InitializeThreadingParameters()
{
/** Resize and initialize the threading related parameters.
* The SetSize() functions do not resize the data when this is not
* needed, which saves valuable re-allocation time.
*
* This function is only to be called at the start of each resolution.
* Re-initialization of the potentially large vectors is performed after
* each iteration, in the accumulate functions, in a multi-threaded fashion.
* This has performance benefits for larger vector sizes.
*/
const ThreadIdType numberOfThreads = this->m_Threader->GetNumberOfWorkUnits();
// For each thread, assign a struct of zero-initialized values.
m_ComputePerThreadVariables.assign(numberOfThreads, AlignedComputePerThreadStruct());
} // end InitializeThreadingParameters()
//----------------------------------------------------------------------
// Compute moments for a new or modified image
template <typename TImage>
void
AdvancedImageMomentsCalculator<TImage>::ComputeSingleThreaded()
{
if (this->m_CenterOfGravityUsesLowerThreshold)
{
auto thresholdFilter = BinaryThresholdImageFilterType::New();
thresholdFilter->SetInput(this->m_Image);
thresholdFilter->SetLowerThreshold(this->m_LowerThresholdForCenterGravity);
thresholdFilter->SetInsideValue(1);
thresholdFilter->SetOutsideValue(0);
thresholdFilter->Update();
this->SetImage(thresholdFilter->GetOutput());
}
m_M0 = ScalarType{};
m_M1.Fill(typename VectorType::ValueType{});
m_M2.Fill(typename MatrixType::ValueType{});
m_Cg.Fill(typename VectorType::ValueType{});
m_Cm.Fill(typename MatrixType::ValueType{});
using IndexType = typename ImageType::IndexType;
if (!m_Image)
{
return;
}
ImageRegionConstIteratorWithIndex<ImageType> it(m_Image, m_Image->GetRequestedRegion());
while (!it.IsAtEnd())
{
double value = it.Value();
IndexType indexPosition = it.GetIndex();
Point<double, ImageDimension> physicalPosition;
m_Image->TransformIndexToPhysicalPoint(indexPosition, physicalPosition);
if (m_SpatialObjectMask.IsNull() || m_SpatialObjectMask->IsInsideInWorldSpace(physicalPosition))
{
m_M0 += value;
for (unsigned int i = 0; i < ImageDimension; ++i)
{
m_M1[i] += static_cast<double>(indexPosition[i]) * value;
for (unsigned int j = 0; j < ImageDimension; ++j)
{
double weight = value * static_cast<double>(indexPosition[i]) * static_cast<double>(indexPosition[j]);
m_M2[i][j] += weight;
}
}
for (unsigned int i = 0; i < ImageDimension; ++i)
{
m_Cg[i] += physicalPosition[i] * value;
for (unsigned int j = 0; j < ImageDimension; ++j)
{
double weight = value * physicalPosition[i] * physicalPosition[j];
m_Cm[i][j] += weight;
}
}
}
++it;
}
DoPostProcessing();
}
//----------------------------------------------------------------------
// Compute moments for a new or modified image
template <typename TImage>
void
AdvancedImageMomentsCalculator<TImage>::Compute()
{
/** Option for now to still use the single threaded code. */
if (!this->m_UseMultiThread)
{
return this->ComputeSingleThreaded();
}
/** Initialize multi-threading. */
this->InitializeThreadingParameters();
/** Tackle stuff needed before multi-threading. */
this->BeforeThreadedCompute();
/** Launch multi-threaded computation. */
this->LaunchComputeThreaderCallback();
/** Gather the values from all threads. */
this->AfterThreadedCompute();
} // end Compute()
/**
* *********************** BeforeThreadedCompute***************
*/
template <typename TImage>
void
AdvancedImageMomentsCalculator<TImage>::BeforeThreadedCompute()
{
m_M0 = ScalarType{};
m_M1.Fill(typename VectorType::ValueType{});
m_M2.Fill(typename MatrixType::ValueType{});
m_Cg.Fill(typename VectorType::ValueType{});
m_Cm.Fill(typename MatrixType::ValueType{});
if (!m_Image)
{
return;
}
if (this->m_CenterOfGravityUsesLowerThreshold)
{
auto thresholdFilter = BinaryThresholdImageFilterType::New();
thresholdFilter->SetInput(this->m_Image);
thresholdFilter->SetLowerThreshold(this->m_LowerThresholdForCenterGravity);
thresholdFilter->SetInsideValue(1);
thresholdFilter->SetOutsideValue(0);
thresholdFilter->Update();
this->SetImage(thresholdFilter->GetOutput());
}
this->SampleImage(this->m_SampleContainer);
} // end BeforeThreadedCompute()
/**
* *********************** LaunchComputeThreaderCallback***************
*/
template <typename TImage>
void
AdvancedImageMomentsCalculator<TImage>::LaunchComputeThreaderCallback() const
{
/** Setup threader and launch. */
this->m_Threader->SetSingleMethodAndExecute(this->ComputeThreaderCallback, &m_ThreaderParameters);
} // end LaunchComputeThreaderCallback()
/**
* ************ ComputeThreaderCallback ****************************
*/
template <typename TImage>
ITK_THREAD_RETURN_FUNCTION_CALL_CONVENTION
AdvancedImageMomentsCalculator<TImage>::ComputeThreaderCallback(void * arg)
{
/** Get the current thread id and user data. */
assert(arg);
const auto & infoStruct = *static_cast<ThreadInfoType *>(arg);
ThreadIdType threadID = infoStruct.WorkUnitID;
assert(infoStruct.UserData);
const auto & userData = *static_cast<MultiThreaderParameterType *>(infoStruct.UserData);
/** Call the real implementation. */
userData.st_Self->ThreadedCompute(threadID);
return ITK_THREAD_RETURN_DEFAULT_VALUE;
} // end ComputeThreaderCallback()
/**
* ************ ThreadedCompute ****************************
*/
template <typename TImage>
void
AdvancedImageMomentsCalculator<TImage>::ThreadedCompute(ThreadIdType threadId)
{
if (!this->m_Image)
{
return;
}
ScalarType M0 = 0;
VectorType M1, Cg;
M1.Fill(typename VectorType::ValueType{});
Cg.Fill(typename VectorType::ValueType{});
MatrixType M2, Cm;
M2.Fill(typename MatrixType::ValueType{});
Cm.Fill(typename MatrixType::ValueType{});
unsigned long numberOfPixelsCounted = 0;
/** Get sample container size, number of threads, and output space dimension. */
const size_t sampleContainerSize{ this->m_SampleContainer->size() };
const ThreadIdType numberOfThreads = this->m_Threader->GetNumberOfWorkUnits();
/** Get the samples for this thread. */
const auto nrOfSamplesPerThreads = static_cast<unsigned long>(
std::ceil(static_cast<double>(sampleContainerSize) / static_cast<double>(numberOfThreads)));
const auto pos_begin = std::min<size_t>(nrOfSamplesPerThreads * threadId, sampleContainerSize);
const auto pos_end = std::min<size_t>(nrOfSamplesPerThreads * (threadId + 1), sampleContainerSize);
/** Create iterator over the sample container. */
const auto beginOfSampleContainer = this->m_SampleContainer->cbegin();
const auto threader_fbegin = beginOfSampleContainer + pos_begin;
const auto threader_fend = beginOfSampleContainer + pos_end;
for (auto threader_fiter = threader_fbegin; threader_fiter != threader_fend; ++threader_fiter)
{
double value = threader_fiter->m_ImageValue;
// IndexType indexPosition = threader_fiter->GetIndex();
Point<double, ImageDimension> physicalPosition = threader_fiter->m_ImageCoordinates;
if (m_SpatialObjectMask.IsNull() || m_SpatialObjectMask->IsInsideInWorldSpace(physicalPosition))
{
M0 += value;
for (unsigned int i = 0; i < ImageDimension; ++i)
{
Cg[i] += physicalPosition[i] * value;
for (unsigned int j = 0; j < ImageDimension; ++j)
{
double weight = value * physicalPosition[i] * physicalPosition[j];
Cm[i][j] += weight;
}
}
++numberOfPixelsCounted;
}
}
/** Update the thread struct once. */
AlignedComputePerThreadStruct computePerThreadStruct;
computePerThreadStruct.st_M0 = M0;
computePerThreadStruct.st_M1 = M1;
computePerThreadStruct.st_M2 = M2;
computePerThreadStruct.st_Cg = Cg;
computePerThreadStruct.st_Cm = Cm;
computePerThreadStruct.st_NumberOfPixelsCounted = numberOfPixelsCounted;
m_ComputePerThreadVariables[threadId] = computePerThreadStruct;
} // end ThreadedCompute()
/**
* *********************** AfterThreadedCompute***************
*/
template <typename TImage>
void
AdvancedImageMomentsCalculator<TImage>::AfterThreadedCompute()
{
/** Accumulate thread results. */
for (auto & computePerThreadStruct : m_ComputePerThreadVariables)
{
this->m_M0 += computePerThreadStruct.st_M0;
for (unsigned int i = 0; i < ImageDimension; ++i)
{
this->m_M1[i] += computePerThreadStruct.st_M1[i];
this->m_Cg[i] += computePerThreadStruct.st_Cg[i];
computePerThreadStruct.st_M1[i] = 0;
computePerThreadStruct.st_Cg[i] = 0;
for (unsigned int j = 0; j < ImageDimension; ++j)
{
this->m_M2[i][j] += computePerThreadStruct.st_M2[i][j];
this->m_Cm[i][j] += computePerThreadStruct.st_Cm[i][j];
computePerThreadStruct.st_M2[i][j] = 0;
computePerThreadStruct.st_Cm[i][j] = 0;
}
computePerThreadStruct.st_M0 = 0;
}
}
DoPostProcessing();
}
template <typename TImage>
void
AdvancedImageMomentsCalculator<TImage>::DoPostProcessing()
{
// Throw an error if the total mass is zero
if (this->m_M0 == 0.0)
{
itkExceptionMacro(
"Compute(): Total Mass of the image was zero. Aborting here to prevent division by zero later on.");
}
// Normalize using the total mass
for (unsigned int i = 0; i < ImageDimension; ++i)
{
m_Cg[i] /= m_M0;
m_M1[i] /= m_M0;
for (unsigned int j = 0; j < ImageDimension; ++j)
{
m_M2[i][j] /= m_M0;
m_Cm[i][j] /= m_M0;
}
}
// Center the second order moments
for (unsigned int i = 0; i < ImageDimension; ++i)
{
for (unsigned int j = 0; j < ImageDimension; ++j)
{
m_M2[i][j] -= m_M1[i] * m_M1[j];
m_Cm[i][j] -= m_Cg[i] * m_Cg[j];
}
}
// Compute principal moments and axes
vnl_symmetric_eigensystem<double> eigen(m_Cm.GetVnlMatrix().as_ref());
vnl_diag_matrix<double> pm = eigen.D;
for (unsigned int i = 0; i < ImageDimension; ++i)
{
m_Pm[i] = pm(i) * m_M0;
}
m_Pa = eigen.V.transpose();
// Add a final reflection if needed for a proper rotation,
// by multiplying the last row by the determinant
vnl_real_eigensystem eigenrot(m_Pa.GetVnlMatrix().as_ref());
vnl_diag_matrix<std::complex<double>> eigenval = eigenrot.D;
std::complex<double> det(1.0, 0.0);
for (unsigned int i = 0; i < ImageDimension; ++i)
{
det *= eigenval(i);
}
for (unsigned int i = 0; i < ImageDimension; ++i)
{
m_Pa[ImageDimension - 1][i] *= std::real(det);
}
/* Remember that the moments are valid */
m_Valid = true;
}
//---------------------------------------------------------------------
// Get sum of intensities
template <typename TImage>
auto
AdvancedImageMomentsCalculator<TImage>::GetTotalMass() const -> ScalarType
{
if (!m_Valid)
{
itkExceptionMacro("GetTotalMass() invoked, but the moments have not been computed. Call Compute() first.");
}
return m_M0;
}
//--------------------------------------------------------------------
// Get first moments about origin, in index coordinates
template <typename TImage>
auto
AdvancedImageMomentsCalculator<TImage>::GetFirstMoments() const -> VectorType
{
if (!m_Valid)
{
itkExceptionMacro("GetFirstMoments() invoked, but the moments have not been computed. Call Compute() first.");
}
return m_M1;
}
//--------------------------------------------------------------------
// Get second moments about origin, in index coordinates
template <typename TImage>
auto
AdvancedImageMomentsCalculator<TImage>::GetSecondMoments() const -> MatrixType
{
if (!m_Valid)
{
itkExceptionMacro("GetSecondMoments() invoked, but the moments have not been computed. Call Compute() first.");
}
return m_M2;
}
//--------------------------------------------------------------------
// Get center of gravity, in physical coordinates
template <typename TImage>
auto
AdvancedImageMomentsCalculator<TImage>::GetCenterOfGravity() const -> VectorType
{
if (!m_Valid)
{
itkExceptionMacro("GetCenterOfGravity() invoked, but the moments have not been computed. Call Compute() first.");
}
return m_Cg;
}
//--------------------------------------------------------------------
// Get second central moments, in physical coordinates
template <typename TImage>
auto
AdvancedImageMomentsCalculator<TImage>::GetCentralMoments() const -> MatrixType
{
if (!m_Valid)
{
itkExceptionMacro("GetCentralMoments() invoked, but the moments have not been computed. Call Compute() first.");
}
return m_Cm;
}
//--------------------------------------------------------------------
// Get principal moments, in physical coordinates
template <typename TImage>
auto
AdvancedImageMomentsCalculator<TImage>::GetPrincipalMoments() const -> VectorType
{
if (!m_Valid)
{
itkExceptionMacro("GetPrincipalMoments() invoked, but the moments have not been computed. Call Compute() first.");
}
return m_Pm;
}
//--------------------------------------------------------------------
// Get principal axes, in physical coordinates
template <typename TImage>
auto
AdvancedImageMomentsCalculator<TImage>::GetPrincipalAxes() const -> MatrixType
{
if (!m_Valid)
{
itkExceptionMacro("GetPrincipalAxes() invoked, but the moments have not been computed. Call Compute() first.");
}
return m_Pa;
}
//--------------------------------------------------------------------
// Get principal axes to physical axes transform
template <typename TImage>
auto
AdvancedImageMomentsCalculator<TImage>::GetPrincipalAxesToPhysicalAxesTransform() const -> AffineTransformPointer
{
typename AffineTransformType::MatrixType matrix;
typename AffineTransformType::OffsetType offset;
for (unsigned int i = 0; i < ImageDimension; ++i)
{
offset[i] = m_Cg[i];
for (unsigned int j = 0; j < ImageDimension; ++j)
{
matrix[j][i] = m_Pa[i][j]; // Note the transposition
}
}
AffineTransformPointer result = AffineTransformType::New();
result->SetMatrix(matrix);
result->SetOffset(offset);
return result;
}
//--------------------------------------------------------------------
// Get physical axes to principal axes transform
template <typename TImage>
auto
AdvancedImageMomentsCalculator<TImage>::GetPhysicalAxesToPrincipalAxesTransform() const -> AffineTransformPointer
{
typename AffineTransformType::MatrixType matrix;
typename AffineTransformType::OffsetType offset;
for (unsigned int i = 0; i < ImageDimension; ++i)
{
offset[i] = m_Cg[i];
for (unsigned int j = 0; j < ImageDimension; ++j)
{
matrix[j][i] = m_Pa[i][j]; // Note the transposition
}
}
AffineTransformPointer result = AffineTransformType::New();
result->SetMatrix(matrix);
result->SetOffset(offset);
AffineTransformPointer inverse = AffineTransformType::New();
result->GetInverse(inverse);
return inverse;
}
/**
* ************************* SampleImage *********************
*/
template <typename TInputImage>
void
AdvancedImageMomentsCalculator<TInputImage>::SampleImage(ImageSampleContainerPointer & sampleContainer)
{
/** Set up grid sampler. */
ImageGridSamplerPointer sampler = ImageGridSamplerType::New();
// ImageFullSamplerPointer sampler = ImageFullSamplerType::New();
sampler->SetInput(this->m_Image);
sampler->SetInputImageRegion(this->m_Image->GetRequestedRegion());
// sampler->SetMask(this->m_Image->GetSpatialObjectMask());
/** Determine grid spacing of sampler such that the desired
* NumberOfJacobianMeasurements is achieved approximately.
* Note that the actually obtained number of samples may be lower, due to masks.
* This is taken into account at the end of this function.
*/
sampler->SetNumberOfSamples(m_NumberOfSamplesForCenteredTransformInitialization);
/** Get samples and check the actually obtained number of samples. */
sampler->Update();
sampleContainer = sampler->GetOutput();
if (sampleContainer->empty())
{
itkExceptionMacro("No valid voxels (0/" << this->m_NumberOfSamplesForCenteredTransformInitialization
<< ") found to estimate the AutomaticTransformInitialization parameters.");
}
} // end SampleImage()
template <typename TInputImage>
void
AdvancedImageMomentsCalculator<TInputImage>::PrintSelf(std::ostream & os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Image: " << m_Image.GetPointer() << std::endl;
os << indent << "Valid: " << m_Valid << std::endl;
os << indent << "Zeroth Moment about origin: " << m_M0 << std::endl;
os << indent << "First Moment about origin: " << m_M1 << std::endl;
os << indent << "Second Moment about origin: " << m_M2 << std::endl;
os << indent << "Center of Gravity: " << m_Cg << std::endl;
os << indent << "Second central moments: " << m_Cm << std::endl;
os << indent << "Principal Moments: " << m_Pm << std::endl;
os << indent << "Principal axes: " << m_Pa << std::endl;
}
} // end namespace itk
#endif
|