|
|
(One intermediate revision by one other user not shown) |
Line 1: |
Line 1: |
| <div class="floatcenter">[[File:ITK_Examples_Baseline_Functions_TestGaussianBlurImageFunction.png]]</div>
| | {{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. |
| This example shows how to apply the GaussianBlurImageFunction to an input image. The output is saved as a float or double image type.
| | }} |
| | |
| ==GaussianBlurImageFunction.cxx==
| |
| <source lang="cpp">
| |
| #include "itkImage.h"
| |
| #include "itkImageFileReader.h"
| |
| #include "itkImageFileWriter.h"
| |
| #include "itkGaussianBlurImageFunction.h"
| |
| #include "itkImageRegionIterator.h"
| |
| | |
| int main( int argc, char * argv[] )
| |
| {
| |
| if( argc < 5 ) {
| |
| std::cerr << "Usage: " << std::endl;
| |
| std::cerr << argv[0] << " inputImageFile outputImageFile sigma maxKernelWidth" << std::endl;
| |
| return EXIT_FAILURE;
| |
| }
| |
| | |
| typedef itk::Image< float, 2 > ImageType;
| |
| typedef itk::ImageFileReader< ImageType > ReaderType;
| |
| typedef itk::ImageRegionIterator< ImageType > IteratorType;
| |
| typedef itk::ImageRegionConstIterator< ImageType > ConstIteratorType;
| |
| | |
| ReaderType::Pointer reader = ReaderType::New();
| |
| reader->SetFileName( argv[1] );
| |
| reader->Update();
| |
| | |
| const ImageType * inputImage = reader->GetOutput();
| |
| | |
| ImageType::RegionType region = inputImage->GetBufferedRegion();
| |
| | |
| ConstIteratorType it( inputImage, region );
| |
| | |
| ImageType::Pointer output = ImageType::New();
| |
| | |
| output->SetRegions( region );
| |
| output->SetOrigin( inputImage->GetOrigin() );
| |
| output->SetSpacing( inputImage->GetSpacing() );
| |
| output->Allocate();
| |
| | |
| IteratorType out( output, region );
| |
| | |
| typedef itk::GaussianBlurImageFunction< ImageType > GFunctionType;
| |
| GFunctionType::Pointer gaussianFunction = GFunctionType::New();
| |
| gaussianFunction->SetInputImage( inputImage );
| |
| | |
| GFunctionType::ErrorArrayType setError;
| |
| setError.Fill( 0.01 );
| |
| gaussianFunction->SetMaximumError( setError );
| |
| gaussianFunction->SetSigma( atof( argv[3] ) );
| |
| gaussianFunction->SetMaximumKernelWidth( atoi( argv[4] ) );
| |
| | |
| it.GoToBegin();
| |
| out.GoToBegin();
| |
| | |
| while( !it.IsAtEnd() ) | |
| {
| |
| out.Set( gaussianFunction->EvaluateAtIndex(it.GetIndex() ) );
| |
| ++it;
| |
| ++out;
| |
| }
| |
| | |
| typedef itk::ImageFileWriter < ImageType > WriterType;
| |
| WriterType::Pointer writer = WriterType::New();
| |
| writer->SetFileName(argv[2]);
| |
| writer->SetInput(output);
| |
| writer->Update();
| |
| | |
| return EXIT_SUCCESS;
| |
| }
| |
| </source>
| |
| | |
| | |
| {{ITKCMakeLists|GaussianBlurImageFunction}}
| |