ITK  5.0.0
Insight Segmentation and Registration Toolkit
WikiExamples/Developer/ImageFilterMultipleOutputs.cxx
#include "itkImage.h"
#include "ImageFilterMultipleOutputs.h"
int main(int, char*[])
{
// Setup types
using ImageType = itk::Image<unsigned char, 2>;
using FilterType = itk::ImageFilterMultipleOutputs<ImageType>;
// Create and the filter
FilterType::Pointer filter = FilterType::New();
filter->Update();
{
WriterType::Pointer writer = WriterType::New();
writer->SetFileName("TestOutput1.jpg");
writer->SetInput(filter->GetOutput1());
writer->Update();
}
{
WriterType::Pointer writer = WriterType::New();
writer->SetFileName("TestOutput2.jpg");
writer->SetInput(filter->GetOutput2());
writer->Update();
}
return EXIT_SUCCESS;
}