diff --git a/Modules/Filtering/Statistics/test/CMakeLists.txt b/Modules/Filtering/Statistics/test/CMakeLists.txt index be612f3a625b419ebc5425805320dbaaf64dd7b8..18d97b67c991dafa8745d028f7c0c536a86068e2 100644 --- a/Modules/Filtering/Statistics/test/CMakeLists.txt +++ b/Modules/Filtering/Statistics/test/CMakeLists.txt @@ -74,6 +74,10 @@ otb_add_test(NAME bfTuStreamingHistogramVIFilterNew COMMAND otbStatisticsTestDri otbStreamingHistogramVectorImageFilterNew ) +otb_add_test(NAME bfTvStreamingHistogramVIFilterTest COMMAND otbStatisticsTestDriver + otbStreamingHistogramVectorImageFilterTest + ) + otb_add_test(NAME bfTuStreamingStatisticsVectorImageFilterNew COMMAND otbStatisticsTestDriver otbStreamingStatisticsVectorImageFilterNew) diff --git a/Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx b/Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx index e9d21856b30a84e18194af366a7b2c2392bc05bb..cc7f85a5690d978429b797efb955700d464a86aa 100644 --- a/Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx +++ b/Modules/Filtering/Statistics/test/otbStatisticsTestDriver.cxx @@ -8,6 +8,7 @@ void RegisterTests() REGISTER_TEST(otbStreamingStatisticsImageFilterNew); REGISTER_TEST(otbListSampleToVariableDimensionHistogramGeneratorNew); REGISTER_TEST(otbStreamingHistogramVectorImageFilterNew); + REGISTER_TEST(otbStreamingHistogramVectorImageFilterTest); REGISTER_TEST(otbStreamingStatisticsVectorImageFilterNew); REGISTER_TEST(otbRealImageToComplexImageFilterTest); REGISTER_TEST(otbHistogramStatisticsFunction); diff --git a/Modules/Filtering/Statistics/test/otbStreamingHistogramVectorImageFilter.cxx b/Modules/Filtering/Statistics/test/otbStreamingHistogramVectorImageFilter.cxx index 45620f89473f5c861cb21c8e41f6fdbdb1aee0d9..da051ca53a14255520c015d8aec3d0b47f932af8 100644 --- a/Modules/Filtering/Statistics/test/otbStreamingHistogramVectorImageFilter.cxx +++ b/Modules/Filtering/Statistics/test/otbStreamingHistogramVectorImageFilter.cxx @@ -18,10 +18,16 @@ #include "otbStreamingHistogramVectorImageFilter.h" #include "otbVectorImage.h" +#include "itkImageRegionIteratorWithIndex.h" +#include "otbObjectList.h" +#include "itkHistogram.h" typedef otb::VectorImage<unsigned char> VectorImageType; typedef otb::StreamingHistogramVectorImageFilter<VectorImageType> SHVIFType; - +typedef itk::NumericTraits< VectorImageType::InternalPixelType >::RealType RealType; +typedef RealType MeasurementType; +typedef itk::Statistics::Histogram< MeasurementType > Histogram; +typedef otb::ObjectList< Histogram > HistogramList; int otbStreamingHistogramVectorImageFilterNew(int itkNotUsed(argc), char * itkNotUsed(argv) []) @@ -33,3 +39,108 @@ int otbStreamingHistogramVectorImageFilterNew(int itkNotUsed(argc), char * itkNo return EXIT_SUCCESS; } + +int otbStreamingHistogramVectorImageFilterTest(int itkNotUsed(argc), char * itkNotUsed(argv) []) +{ +// Allocate input image + const unsigned int nbComp = 2; + VectorImageType::SizeType size; + size.Fill(4); + VectorImageType::IndexType idx; + idx.Fill(0); + VectorImageType::RegionType region; + region.SetSize(size); + region.SetIndex(idx); + + VectorImageType::Pointer image = VectorImageType::New(); + + image->SetRegions(region); + image->SetNumberOfComponentsPerPixel(nbComp); + image->Allocate(); + + typedef itk::ImageRegionIteratorWithIndex<VectorImageType> IteratorType; + IteratorType it(image, region); + + it.GoToBegin(); + + VectorImageType::PixelType pixel(nbComp); + VectorImageType::IndexType index; + + while( !it.IsAtEnd() ) + { + index = it.GetIndex(); + pixel[0]=index[0]; + pixel[1]=index[1]; + + it.Set(pixel); + ++it; + } +//Histogram computation + SHVIFType::Pointer SHVIFFilter = SHVIFType::New(); + + SHVIFFilter->GetFilter()->SetInput(image); + SHVIFType::FilterType::CountVectorType bins( nbComp ); + bins[0]=2; + bins[1]=2; + SHVIFFilter->GetFilter()->SetNumberOfBins( bins ); + + VectorImageType::PixelType pixelMin(nbComp); + pixelMin[0]=0; + pixelMin[1]=0; + VectorImageType::PixelType pixelMax(nbComp); + pixelMax[0]=3; + pixelMax[1]=3; + + SHVIFFilter->GetFilter()->SetHistogramMin( pixelMin ); + SHVIFFilter->GetFilter()->SetHistogramMax( pixelMax ); + + SHVIFFilter->Update(); + + HistogramList::Pointer histograms = SHVIFFilter->GetHistogramList(); + + std::cout << "Histogram list size " << histograms->Size() << std::endl; + unsigned int channel = 0; // first channel + Histogram::Pointer histogram( histograms->GetNthElement( channel ) ); + + unsigned int histogramSize = histogram->Size(); + + std::cout << "Histogram size " << histogramSize << std::endl; + + + + std::cout << "Histogram of the first component" << std::endl; + + // We expect to have 2 bins, each with a frequency of 8. + const unsigned int expectedFrequency = 8; + + for( unsigned int bin=0; bin < histogramSize; bin++ ) + { + if( histogram->GetFrequency( bin, channel ) != expectedFrequency ) + { + std::cerr << "Error in bin= " << bin << " channel = " << channel << std::endl; + std::cerr << "Frequency was= " << histogram->GetFrequency( bin, channel ) << " Instead of the expected " << expectedFrequency << std::endl; + return EXIT_FAILURE; + } + } + + channel = 1; + histogram = histograms->GetNthElement( channel ) ; + + histogramSize = histogram->Size(); + + std::cout << "Histogram size " << histogramSize << std::endl; + + std::cout << "Histogram of the second component" << std::endl; + + for( unsigned int bin=0; bin < histogramSize; bin++ ) + { + if( histogram->GetFrequency( bin, 0 ) != expectedFrequency ) + { + std::cerr << "Error in bin= " << bin << " channel = " << channel << std::endl; + std::cerr << "Frequency was= " << histogram->GetFrequency( bin, 0 ) << " Instead of the expected " << expectedFrequency << std::endl; + return EXIT_FAILURE; + } + } + //FIXME: whe should test also here the support of no data value + return EXIT_SUCCESS; +}