#include "itksys/SystemTools.hxx"
#include <sstream>
using PixelType = unsigned char;
static void CreateImage(ImageType::Pointer image);
int main(int argc, char *argv[])
{
unsigned int numberOfThresholds = 1;
ImageType::Pointer image;
if( argc < 2 )
{
image = ImageType::New();
CreateImage(image.GetPointer());
}
else
{
ReaderType::Pointer reader =
ReaderType::New();
reader->SetFileName(argv[1]);
reader->Update();
if (argc > 2)
{
numberOfThresholds = atoi(argv[2]);
}
image = reader->GetOutput();
}
FilterType::Pointer otsuFilter
= FilterType::New();
otsuFilter->SetInput(image);
otsuFilter->SetNumberOfThresholds(numberOfThresholds);
otsuFilter->Update();
RGBFilterType::Pointer colormapImageFilter = RGBFilterType::New();
colormapImageFilter->SetInput(otsuFilter->GetOutput());
image.GetPointer(),true,
argc > 1 ? itksys::SystemTools::GetFilenameName(argv[1]) : "Generated image");
std::stringstream desc;
desc << "Otsu Threshold\n"
<< otsuFilter->GetNumberOfThresholds()
<< " thresholds: ";
FilterType::ThresholdVectorType thresholds = otsuFilter->GetThresholds();
for (double threshold : thresholds)
{
desc << itk::NumericTraits<FilterType::InputPixelType>::PrintType(threshold) << " ";
}
colormapImageFilter->GetOutput(),
true,
desc.str());
return EXIT_SUCCESS;
}
void CreateImage(ImageType::Pointer image)
{
region.SetIndex(start);
image->SetRegions(region);
image->Allocate();
}