X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=inline;f=registration%2FclitkGenericMetric.txx;h=41e519cf0a6fda471cddb0ce18f2dd919c7921ea;hb=5e6ee2503e6908ec0ffa9e2b39163ce3370930d4;hp=73be423a3b925d4c8760ac64c5e36d36e9bdca9d;hpb=b8bc3d9aed8872b4d6182dffcf8837c8e8aa8509;p=clitk.git diff --git a/registration/clitkGenericMetric.txx b/registration/clitkGenericMetric.txx index 73be423..41e519c 100644 --- a/registration/clitkGenericMetric.txx +++ b/registration/clitkGenericMetric.txx @@ -20,7 +20,8 @@ #define __clitkGenericMetric_txx #include "clitkGenericMetric.h" - +#include +#include namespace clitk { @@ -255,9 +256,18 @@ GenericMetric::GetMetricPointer( } + typedef itk::ImageMaskSpatialObject ImageMaskSpatialObjectType; + typename ImageMaskSpatialObjectType::ConstPointer mask = dynamic_cast(m_FixedImageMask.GetPointer()); + + typedef typename ImageMaskSpatialObjectType::RegionType ImageMaskRegionType; + ImageMaskRegionType mask_region = mask->GetAxisAlignedBoundingBoxRegion(); + // Common properties - if( m_FixedImageMask.IsNotNull() ) m_Metric->SetFixedImageMask(m_FixedImageMask); + if( m_FixedImageMask.IsNotNull() ) + m_Metric->SetFixedImageMask(m_FixedImageMask); + m_Metric->SetFixedImageRegion(m_FixedImageRegion); + //m_Metric->SetFixedImageRegion(mask_region); #ifdef ITK_USE_OPTIMIZED_REGISTRATION_METHODS @@ -290,6 +300,7 @@ GenericMetric::GetMetricPointer( // Calculate the number const unsigned int totalNumberOfPixels = m_FixedImageRegion.GetNumberOfPixels(); + //const unsigned int totalNumberOfPixels = mask_region.GetNumberOfPixels(); const unsigned int numberOfDemandedPixels = static_cast< unsigned int >( (double) totalNumberOfPixels *m_ArgsInfo.samples_arg ); // -------------------------------------------------- @@ -300,6 +311,7 @@ GenericMetric::GetMetricPointer( // Set up a region interator within the user specified fixed image region. typedef ImageRegionConstIteratorWithIndex RegionIterator; RegionIterator regionIter( m_FixedImage, m_FixedImageRegion ); + //RegionIterator regionIter( m_FixedImage, mask_region ); // go over the whole region regionIter.GoToBegin(); @@ -341,40 +353,70 @@ GenericMetric::GetMetricPointer( // Set up a random interator within the user specified fixed image region. typedef ImageRandomConstIteratorWithIndex RandomIterator; + + RandomIterator randIter( m_FixedImage, m_FixedImageRegion ); + //RandomIterator randIter( m_FixedImage, mask_region ); + + if (m_Verbose) std::cout << "Search region " << m_FixedImageRegion << std::endl; + if (m_Verbose) std::cout << "Mask search region " << mask_region << std::endl; // Randomly sample the image - randIter.SetNumberOfSamples( numberOfDemandedPixels * 1000 ); - randIter.GoToBegin(); - while( (!randIter.IsAtEnd()) && (numberOfValidPixels<=numberOfDemandedPixels) ) { - // Get sampled index - index = randIter.GetIndex(); - - // Mask? - if( m_FixedImageMask.IsNotNull() ) { + short att = 1; + short natts = 5; + while (att <= natts) { + if (m_Verbose) std::cout << "Attempt " << att << std::endl; + + int count_out = 0; + int count_not_thres = 0; + clock_t c = clock(); + randIter.ReinitializeSeed(c); + randIter.SetNumberOfSamples( numberOfDemandedPixels * 1000 ); + randIter.GoToBegin(); + //int cnt = 0; + while( (!randIter.IsAtEnd()) && (numberOfValidPixels<=numberOfDemandedPixels) ) { + // Get sampled index + index = randIter.GetIndex(); + //if (m_Verbose) std::cout << "testing pixel " << index << std::endl; + + // Mask? + if( m_FixedImageMask.IsNotNull() ) { + + // Check if the Index is inside the mask, translate index to point + m_FixedImage->TransformIndexToPhysicalPoint( index, inputPoint ); + + // If not inside the mask, ignore the point + if( !m_FixedImageMask->IsInside( inputPoint ) ) { + ++randIter; // jump to next pixel + //if (m_Verbose) std::cout << "not inside " << inputPoint << std::endl; + count_out++; + continue; + } - // Check if the Index is inside the mask, translate index to point - m_FixedImage->TransformIndexToPhysicalPoint( index, inputPoint ); + } - // If not inside the mask, ignore the point - if( !m_FixedImageMask->IsInside( inputPoint ) ) { - ++randIter; // jump to next pixel + // Intensity? + if( m_UseFixedImageSamplesIntensityThreshold && + randIter.Get() < m_FixedImageSamplesIntensityThreshold ) { + ++randIter; + //if (m_Verbose) std::cout << "not in threshold" << std::endl; + count_not_thres++; continue; } - } - - // Intensity? - if( m_UseFixedImageSamplesIntensityThreshold && - randIter.Get() < m_FixedImageSamplesIntensityThreshold ) { + // Add point to the numbers + fiic.push_back(index); + ++numberOfValidPixels; ++randIter; - continue; } - - // Add point to the numbers - fiic.push_back(index); - ++numberOfValidPixels; - ++randIter; + + if (m_Verbose) std::cout << "points outside = " << count_out << std::endl; + if (m_Verbose) std::cout << "points not in threshold = " << count_not_thres << std::endl; + + if (fiic.size()) + break; + + att++; } }