|
|
(5 intermediate revisions by one other user not shown) |
Line 1: |
Line 1: |
| ==LaplacianSharpeningImageFilter.cxx==
| | {{warning|1=The media wiki content on this page is no longer maintained. The examples presented on the https://itk.org/Wiki/* pages likely require ITK version 4.13 or earlier releases. In many cases, the examples on this page no longer conform to the best practices for modern ITK versions. |
| <source lang="cpp">
| | }} |
| #include "itkImage.h"
| |
| #include "itkImageFileReader.h"
| |
| #include "itkImageFileWriter.h"
| |
| #include "itkRescaleIntensityImageFilter.h"
| |
| #include "itkLaplacianSharpeningImageFilter.h"
| |
| | |
| int main(int argc, char * argv[])
| |
| { | |
| // Verify command line arguments
| |
| if( argc < 3 )
| |
| {
| |
| std::cerr << "Usage: " << std::endl;
| |
| std::cerr << argv[0] << "inputImageFile output" << std::endl;
| |
| return EXIT_FAILURE;
| |
| }
| |
| | |
| // Parse command line arguments
| |
| std::string inputFilename = argv[1];
| |
| std::string outputFilename = argv[2];
| |
|
| |
| // Output argument
| |
| std::cout << "Input: " << inputFilename << std::endl;
| |
| std::cout << "Input: " << outputFilename << std::endl;
| |
|
| |
| | |
| // Setup types
| |
| typedef itk::Image< float, 2 > FloatImageType;
| |
| | |
| typedef itk::ImageFileReader< FloatImageType > readerType; | |
| readerType::Pointer reader = readerType::New();
| |
| reader->SetFileName(inputFilename);
| |
| reader->Update();
| |
| | |
| typedef itk::LaplacianSharpeningImageFilter<FloatImageType, FloatImageType > LaplacianSharpeningImageFilterType;
| |
| LaplacianSharpeningImageFilterType::Pointer laplacianSharpeningImageFilter = LaplacianSharpeningImageFilterType::New();
| |
| laplacianSharpeningImageFilter->SetInput( reader->GetOutput() );
| |
| laplacianSharpeningImageFilter->Update();
| |
| | |
| typedef itk::ImageFileWriter< FloatImageType > ImageFileWriterType;
| |
| ImageFileWriterType::Pointer writer = ImageFileWriterType::New();
| |
| writer->SetFileName(outputFilename);
| |
| writer->SetInput(laplacianSharpeningImageFilter->GetOutput());
| |
| writer->Update();
| |
|
| |
| return EXIT_SUCCESS;
| |
| }
| |
| </source>
| |
| | |
| {{ITKCMakeLists|LaplacianSharpeningImageFilter}}
| |