ITK  5.4.0
Insight Toolkit
Examples/Filtering/MorphologicalImageEnhancement.cxx
/*=========================================================================
*
* Copyright NumFOCUS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
// Software Guide : BeginLatex
//
// This example illustrates the use of Mathematical Morphology filters for
// image enhancement. One of the difficulties of image enhancement is that it
// is defined based on human visual perception and it is related to a
// particular set of features that are of interest in the image. In this
// context, what is considered enhancement for one person, may be seen as
// image degradation by another person.
//
// \index{itk::AntiAliasBinaryImageFilter|textbf}
//
// Software Guide : EndLatex
// Software Guide : BeginCodeSnippet
#include "itkImage.h"
#include "itkPNGImageIO.h"
int
main(int argc, char * argv[])
{
if (argc < 4)
{
std::cerr << "Usage: " << std::endl;
std::cerr << argv[0] << " inputImageFile ";
std::cerr << " outputImageFile radius " << std::endl;
return EXIT_FAILURE;
}
//
// The following code defines the input and output pixel types and their
// associated image types.
//
constexpr unsigned int Dimension = 2;
using PixelType = unsigned char;
using WritePixelType = unsigned char;
using WriteImageType = itk::Image<WritePixelType, Dimension>;
// readers/writers
using ReaderType = itk::ImageFileReader<ImageType>;
// structuring element
using StructuringElementType =
// define the opening and closing types
using OpeningFilterType =
ImageType,
StructuringElementType>;
using ClosingFilterType =
ImageType,
StructuringElementType>;
// define arithmetic operation filters
using AdditionFilterType =
using SubtractionFilterType = itk::
ConstrainedValueDifferenceImageFilter<ImageType, ImageType, ImageType>;
// define rescaling filter
using RescaleFilterType =
// Create structuring element
StructuringElementType structuringElement;
// (argv[3]+1) x (argv[3]+1) structuring element
structuringElement.SetRadius(std::stoi(argv[3]));
structuringElement.CreateStructuringElement();
// Setup the input and output files
auto reader = ReaderType::New();
reader->SetFileName(argv[1]);
auto writer = WriterType::New();
writer->SetFileName(argv[2]);
// reading input image
try
{
reader->Update();
}
catch (const itk::ExceptionObject & err)
{
std::cout << "Problems reading input image" << std::endl;
std::cerr << "ExceptionObject caught !" << std::endl;
std::cerr << err << std::endl;
return EXIT_FAILURE;
}
// Create the opening closing filters
auto opening = OpeningFilterType::New();
auto closing = ClosingFilterType::New();
// Setup the opening and closing methods
opening->SetKernel(structuringElement);
closing->SetKernel(structuringElement);
// Setup minimum and maximum of rescale filter
auto rescaleFilter = RescaleFilterType::New();
rescaleFilter->SetOutputMinimum(0);
rescaleFilter->SetOutputMaximum(255);
// creation of the pipeline. The enhancement operation is given by:
// Original Image + Top Hat Image - Bottom Hat Image
opening->SetInput(reader->GetOutput());
closing->SetInput(reader->GetOutput());
auto topHat = SubtractionFilterType::New();
topHat->SetInput1(reader->GetOutput());
topHat->SetInput2(opening->GetOutput());
auto bottomHat = SubtractionFilterType::New();
bottomHat->SetInput1(closing->GetOutput());
bottomHat->SetInput2(reader->GetOutput());
auto internalAddition = AdditionFilterType::New();
internalAddition->SetInput1(reader->GetOutput());
internalAddition->SetInput2(topHat->GetOutput());
auto imageEnhancement = SubtractionFilterType::New();
imageEnhancement->SetInput1(internalAddition->GetOutput());
imageEnhancement->SetInput2(bottomHat->GetOutput());
rescaleFilter->SetInput(imageEnhancement->GetOutput());
writer->SetInput(rescaleFilter->GetOutput());
try
{
writer->Update();
}
catch (const itk::ExceptionObject & err)
{
std::cout << "ExceptionObject caught !" << std::endl;
std::cout << err << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
itk::BinaryBallStructuringElement
A Neighborhood that represents a ball structuring element (ellipsoid) with binary elements.
Definition: itkBinaryBallStructuringElement.h:62
itkConstrainedValueDifferenceImageFilter.h
itkImageFileReader.h
itkImage.h
itkBinaryBallStructuringElement.h
itk::GrayscaleMorphologicalClosingImageFilter
Grayscale closing of an image.
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:52
itk::ImageFileReader
Data source that reads image data from a single file.
Definition: itkImageFileReader.h:75
itk::GrayscaleMorphologicalOpeningImageFilter
Grayscale opening of an image.
Definition: itkGrayscaleMorphologicalOpeningImageFilter.h:51
itkGrayscaleMorphologicalOpeningImageFilter.h
itk::ImageFileWriter
Writes image data to a single file.
Definition: itkImageFileWriter.h:88
itkPNGImageIO.h
itk::ConstrainedValueAdditionImageFilter
Implements pixel-wise the computation of constrained value addition.
Definition: itkConstrainedValueAdditionImageFilter.h:91
itkRescaleIntensityImageFilter.h
itk::KernelImageFilter::SetRadius
void SetRadius(const RadiusType &radius) override
itkImageFileWriter.h
itkConstrainedValueAdditionImageFilter.h
itk::RescaleIntensityImageFilter
Applies a linear transformation to the intensity levels of the input Image.
Definition: itkRescaleIntensityImageFilter.h:133
itk::Image
Templated n-dimensional image class.
Definition: itkImage.h:88
New
static Pointer New()
itk::GTest::TypedefsAndConstructors::Dimension2::Dimension
constexpr unsigned int Dimension
Definition: itkGTestTypedefsAndConstructors.h:44
itkGrayscaleMorphologicalClosingImageFilter.h