#include "itksys/SystemTools.hxx"
#include <sstream>
#include <map>
#ifdef ENABLE_QUICKVIEW
#endif
int
main(int argc, char * argv[])
{
if (argc < 2)
{
std::cout << "Usage: " << argv[0];
std::cout << " inputImageFile";
std::cerr << std::endl;
return EXIT_FAILURE;
}
using InputPixelType = short;
using OutputPixelType = int;
const auto input = itk::ReadImage<InputImageType>(argv[1]);
#ifdef ENABLE_QUICKVIEW
viewer.
AddImage(input.GetPointer(),
true, itksys::SystemTools::GetFilenameName(argv[1]));
using FilterContainerType =
FilterContainerType filterContainer;
auto it = filterContainer.begin();
for (it = filterContainer.begin(); it != filterContainer.end(); ++it)
{
(*it).second->SetInsideValue(255);
(*it).second->SetOutsideValue(0);
(*it).second->SetNumberOfHistogramBins(25);
(*it).second->SetInput(input);
try
{
(*it).second->Update();
}
catch (const itk::ExceptionObject & err)
{
std::cout << "Caught exception" << std::endl;
std::cout << err << std::endl;
continue;
}
connected->SetInput((*it).second->GetOutput());
rgbFilter->SetInput(connected->GetOutput());
std::stringstream desc;
desc << (*it).first << " threshold = " << (*it).second->GetThreshold();
viewer.
AddRGBImage(rgbFilter->GetOutput(),
true, desc.str());
}
#endif
return EXIT_SUCCESS;
}