static void
int
main(int itkNotUsed(argc), char * itkNotUsed(argv)[])
{
CreateImage(image);
statisticsImageFilter->SetInput(image);
statisticsImageFilter->Update();
std::cout << "Mean: " << statisticsImageFilter->GetMean() << std::endl;
std::cout << "Std.: " << statisticsImageFilter->GetSigma() << std::endl;
std::cout << "Min: " << statisticsImageFilter->GetMinimum() << std::endl;
std::cout << "Max: " << statisticsImageFilter->GetMaximum() << std::endl;
return EXIT_SUCCESS;
}
void
{
start[0] = 0;
start[1] = 0;
unsigned int NumRows = 200;
unsigned int NumCols = 300;
size[0] = NumRows;
size[1] = NumCols;
region.SetIndex(start);
image->SetRegions(region);
image->Allocate();
for (unsigned int r = 20; r < 80; ++r)
{
for (unsigned int c = 30; c < 100; ++c)
{
pixelIndex[0] = r;
pixelIndex[1] = c;
image->SetPixel(pixelIndex, 255);
}
}
for (unsigned int r = 100; r < 130; ++r)
{
for (unsigned int c = 115; c < 160; ++c)
{
pixelIndex[0] = r;
pixelIndex[1] = c;
image->SetPixel(pixelIndex, 255);
}
}
}