20 #include <mitkGIFGrayLevelRunLength.h> 25 template <
typename TPixelType>
33 typedef itk::Image< TPixelType, 3 >
ImageType;
34 typename ImageType::RegionType imageRegion;
35 imageRegion.SetSize(0, dimX);
36 imageRegion.SetSize(1, dimY);
37 imageRegion.SetSize(2, dimZ);
38 typename ImageType::SpacingType spacing;
39 spacing[0] = spacingX;
40 spacing[1] = spacingY;
41 spacing[2] = spacingZ;
44 itk::Matrix<double, 3, 3> directionMatrix; directionMatrix.SetIdentity();
46 typename ImageType::Pointer
image = ImageType::New();
47 image->SetSpacing( spacing );
48 image->SetOrigin( origin );
49 image->SetDirection( directionMatrix );
50 image->SetLargestPossibleRegion( imageRegion );
51 image->SetBufferedRegion( imageRegion );
52 image->SetRequestedRegion( imageRegion );
57 mitkImage->InitializeByItk( image.GetPointer() );
58 mitkImage->SetVolume( image->GetBufferPointer() );
62 template <
typename TPixelType>
70 typedef itk::Image< TPixelType, 3 >
ImageType;
71 typename ImageType::RegionType imageRegion;
72 imageRegion.SetSize(0, dimX);
73 imageRegion.SetSize(1, dimY);
74 imageRegion.SetSize(2, dimZ);
75 typename ImageType::SpacingType spacing;
76 spacing[0] = spacingX;
77 spacing[1] = spacingY;
78 spacing[2] = spacingZ;
81 itk::Matrix<double, 3, 3> directionMatrix; directionMatrix.SetIdentity();
83 typename ImageType::Pointer
image = ImageType::New();
84 image->SetSpacing( spacing );
85 image->SetOrigin( origin );
86 image->SetDirection( directionMatrix );
87 image->SetLargestPossibleRegion( imageRegion );
88 image->SetBufferedRegion( imageRegion );
89 image->SetRequestedRegion( imageRegion );
91 image->FillBuffer(0.0);
93 typedef itk::ImageRegionIterator<ImageType> IteratorOutputType;
94 IteratorOutputType it(image, imageRegion);
106 mitkImage->InitializeByItk( image.GetPointer() );
107 mitkImage->SetVolume( image->GetBufferPointer() );
113 CPPUNIT_TEST_SUITE(mitkGlobalFeaturesTestSuite );
122 CPPUNIT_TEST_SUITE_END();
127 typedef itk::Image<unsigned char,3> MaskType;
130 ImageType::Pointer m_ItkImage;
131 MaskType::Pointer m_ItkMask,m_ItkMask1;
146 m_ItkMask->FillBuffer(0);
147 MaskType::IndexType index;
148 index[0]=88;index[1]=81;index[2]=13;
149 m_ItkMask->SetPixel(index, 1);
150 MITK_INFO <<
"Pixel Value: "<<m_ItkImage->GetPixel(index);
156 m_ItkMask1->FillBuffer(0);
158 for (
int x = 88-range;x < 88+range+1;++x)
160 for (
int y=81-range;y<81+range+1;++y)
162 for (
int z=13-range;z<13+range+1;++z)
168 m_ItkMask1->SetPixel(index, 1);
174 m_GradientImage=GenerateGradientWithDimXImage<unsigned char>(5,5,5);
175 m_GradientMask = GenerateMaskImage<unsigned char>(5,5,5);
178 void FirstOrder_SinglePoint()
181 calculator->SetHistogramSize(4096);
182 calculator->SetUseCtRange(
true);
183 auto features = calculator->CalculateFeatures(m_Image, m_Mask);
185 std::map<std::string, double> results;
188 results[(*iter).first]=(*iter).second;
189 MITK_INFO << (*iter).first <<
" : " << (*iter).second;
192 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The range of a single pixel should be 0",0.0, results[
"FirstOrder Range"], 0);
193 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The uniformity of a single pixel should be 1",1.0, results[
"FirstOrder Uniformity"], 0);
194 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The entropy of a single pixel should be 0",0.0, results[
"FirstOrder Entropy"], 0);
195 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Root-Means-Square of a single pixel with (-352) should be 352",352.0, results[
"FirstOrder RMS"], 0.01);
196 CPPUNIT_ASSERT_EQUAL_MESSAGE(
"The Kurtosis of a single pixel should be undefined",results[
"FirstOrder Kurtosis"]==results[
"FirstOrder Kurtosis"],
false);
197 CPPUNIT_ASSERT_EQUAL_MESSAGE(
"The Skewness of a single pixel should be undefined",results[
"FirstOrder Skewness"]==results[
"FirstOrder Skewness"],
false);
198 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Mean absolute deviation of a single pixel with (-352) should be 0",0, results[
"FirstOrder Mean absolute deviation"], 0.0);
199 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Covered image intensity range of a single pixel with (-352) should be 0",0, results[
"FirstOrder Covered Image Intensity Range"], 0.0);
200 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Minimum of a single pixel with (-352) should be -352",-352, results[
"FirstOrder Minimum"], 0.0);
201 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Maximum of a single pixel with (-352) should be -352",-352, results[
"FirstOrder Maximum"], 0.0);
202 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Mean of a single pixel with (-352) should be -352",-352, results[
"FirstOrder Mean"], 0.0);
203 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Variance (corrected) of a single pixel with (-352) should be 0",0, results[
"FirstOrder Variance"], 0.0);
204 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Sum of a single pixel with (-352) should be -352",-352, results[
"FirstOrder Sum"], 0.0);
205 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Median of a single pixel with (-352) should be -352",-352, results[
"FirstOrder Median"], 0.0);
206 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Standard deviation (corrected) of a single pixel with (-352) should be -352",0, results[
"FirstOrder Standard deviation"], 0.0);
207 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The number of voxels of a single pixel should be 1",1, results[
"FirstOrder No. of Voxel"], 0.0);
208 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Energy of a single pixel should be 352*352",352*352, results[
"FirstOrder Energy"], 0.0);
212 void FirstOrder_QubicArea()
215 calculator->SetHistogramSize(4096);
216 calculator->SetUseCtRange(
true);
217 auto features = calculator->CalculateFeatures(m_Image, m_Mask1);
219 std::map<std::string, double> results;
222 results[(*iter).first]=(*iter).second;
223 MITK_INFO << (*iter).first <<
" : " << (*iter).second;
226 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The range should be 981",981, results[
"FirstOrder Range"], 0);
227 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Root-Means-Square of a single pixel with (-352) should be 352",402.895778, results[
"FirstOrder RMS"], 0.01);
228 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Minimum of a single pixel with (-352) should be -352",-937, results[
"FirstOrder Minimum"], 0.0);
229 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Maximum of a single pixel with (-352) should be -352",44, results[
"FirstOrder Maximum"], 0.0);
230 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Mean of a single pixel with (-352) should be -352",-304.448, results[
"FirstOrder Mean"], 0.0);
231 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Sum of a single pixel with (-352) should be -352",-38056, results[
"FirstOrder Sum"], 0.0);
232 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Median of a single pixel with (-352) should be -352",-202, results[
"FirstOrder Median"], 0.0);
233 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The number of voxels of a single pixel should be 1",125, results[
"FirstOrder No. of Voxel"], 0.0);
234 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Standard deviation (corrected) of a single pixel with (-352) should be -352",264.949066, results[
"FirstOrder Standard deviation"], 0.000001);
235 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Energy of a single pixel should be 352*352",20290626, results[
"FirstOrder Energy"], 0.0);
236 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The uniformity of a single pixel should be 1",0.0088960, results[
"FirstOrder Uniformity"], 0.0000001);
237 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The entropy of a single pixel should be 0",-6.853784285, results[
"FirstOrder Entropy"], 0.000000005);
238 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Variance (corrected) of a single pixel with (-352) should be 0",70198.0074, results[
"FirstOrder Variance"], 0.0001);
239 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Kurtosis of a single pixel should be 0",2.63480121, results[
"FirstOrder Kurtosis"], 0.0001);
240 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Skewness of a single pixel should be 0",-0.91817318, results[
"FirstOrder Skewness"], 0.00001);
241 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Mean absolute deviation of a single pixel with (-352) should be 0",219.348608, results[
"FirstOrder Mean absolute deviation"], 0.000001);
242 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The Covered image intensity range of a single pixel with (-352) should be 0",0.41149329, results[
"FirstOrder Covered Image Intensity Range"], 0.000001);
245 void RunLenght_QubicArea()
247 mitk::GIFGrayLevelRunLength::Pointer calculator = mitk::GIFGrayLevelRunLength::New();
249 calculator->SetUseCtRange(
true);
250 calculator->SetRange(981);
251 auto features = calculator->CalculateFeatures(m_Image, m_Mask1);
253 std::map<std::string, double> results;
256 results[(*iter).first]=(*iter).second;
257 MITK_INFO << (*iter).first <<
" : " << (*iter).second;
261 void Coocurrence_QubicArea()
295 auto features = calculator->CalculateFeatures(m_GradientImage, m_GradientMask);
297 std::map<std::string, double> results;
300 results[(*iter).first]=(*iter).second;
301 MITK_INFO << (*iter).first <<
" : " << (*iter).second;
303 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The mean energy value should be 0.2",0.2, results[
"co-occ. (1) Energy Means"],
mitk::eps);
304 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The mean entropy value should be 0.2",2.321928, results[
"co-occ. (1) Entropy Means"], 0.000001);
305 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The mean contrast value should be 0.0",0, results[
"co-occ. (1) Contrast Means"],
mitk::eps);
306 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The mean dissimilarity value should be 0.0",0, results[
"co-occ. (1) Dissimilarity Means"],
mitk::eps);
307 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The mean homogenity1 value should be 1.0",1, results[
"co-occ. (1) Homogeneity1 Means"],
mitk::eps);
308 CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(
"The mean InverseDifferenceMoment value should be 1.0",1, results[
"co-occ. (1) InverseDifferenceMoment Means"],
mitk::eps);
MITK_TEST_SUITE_REGISTRATION(mitkImageToItk)
itk::Image< unsigned char, 3 > ImageType
#define MITK_TEST(TESTMETHOD)
Adds a test to the current test suite.
static mitk::Image::Pointer GenerateGradientWithDimXImage(unsigned int dimX, unsigned int dimY, unsigned int dimZ, float spacingX=1, float spacingY=1, float spacingZ=1)
static std::string GetTestDataFilePath(const std::string &testData)
Get the absolute path for test data.
Test fixture for parameterized tests.
mitk::Image::Pointer image
void CastToMitkImage(const itk::SmartPointer< ItkOutputImageType > &itkimage, itk::SmartPointer< mitk::Image > &mitkoutputimage)
Cast an itk::Image (with a specific type) to an mitk::Image.
void MITKCORE_EXPORT CastToItkImage(const mitk::Image *mitkImage, itk::SmartPointer< ItkOutputImageType > &itkOutputImage)
Cast an mitk::Image to an itk::Image with a specific type.
MITKCORE_EXPORT const ScalarType eps
static mitk::Image::Pointer GenerateMaskImage(unsigned int dimX, unsigned int dimY, unsigned int dimZ, float spacingX=1, float spacingY=1, float spacingZ=1)