Skip to content

Commit

Permalink
STYLE: Remove commented output stream messages
Browse files Browse the repository at this point in the history
Remove commented output stream messages.
  • Loading branch information
jhlegarreta authored and dzenanz committed Jan 16, 2023
1 parent be6b447 commit f42c10a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
Expand Up @@ -130,8 +130,7 @@ ImageRandomNonRepeatingConstIteratorWithIndex<TImage>::SetPriorityImage(const Pr
position -= residual;
position /= sizeInThisDimension;
}
// std::cout<<pixel<<" "<<positionIndex<<"
// "<<priorityImage->GetPixel(positionIndex)std::endl;

this->m_Permutation->SetPriority(pixel, priorityImage->GetPixel(positionIndex));
}
this->m_Permutation->Shuffle();
Expand Down
Expand Up @@ -145,8 +145,6 @@ typename WindowedSincInterpolateImageFunction<TInputImage, VRadius, TWindowFunct
distance[dim] = index[dim] - static_cast<double>(baseIndex[dim]);
}

// cout << "Sampling at index " << index << " discrete " << baseIndex << endl;

// Position the neighborhood at the index of interest
Size<ImageDimension> radius;
radius.Fill(VRadius);
Expand Down
Expand Up @@ -290,7 +290,7 @@ GPUDemonsRegistrationFunction<TFixedImage, TMovingImage, TDisplacementField>::GP
m_SumOfSquaredDifference = m_GPUSquaredDifference->GetGPUResult();
m_NumberOfPixelsProcessed = m_GPUPixelCounter->GetGPUResult();
m_SumOfSquaredChange = m_GPUSquaredChange->GetGPUResult();
// std::cout << "m_NumberOfPixelsProcessed = " << m_NumberOfPixelsProcessed << std::endl;

if (m_NumberOfPixelsProcessed)
{
m_Metric = m_SumOfSquaredDifference / static_cast<double>(m_NumberOfPixelsProcessed);
Expand Down
Expand Up @@ -145,7 +145,6 @@ ShapePriorMAPCostFunction<TFeatureImage, TOutputPixel>::ComputeLogGradientTerm(c
}

sum *= m_Weights[1];
// std::cout << sum << " ";
return sum;
}

Expand Down

0 comments on commit f42c10a

Please sign in to comment.