1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkDiscreteHessianGaussianImageFunctionTest.cxx,v $
Language: C++
Date: $Date: 2009-10-08 07:22:21 $
Version: $Revision: 1.9 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include <stdio.h>
#include "itkImage.h"
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"
#include "itkImageRegionIterator.h"
#include "itkDiscreteHessianGaussianImageFunction.h"
#include "itkRescaleIntensityImageFilter.h"
template < int VDimension >
int itkDiscreteHessianGaussianImageFunctionTestND( int argc, char* argv[] )
{
// Verify the number of parameters in the command line
if( argc < 4 )
{
std::cerr << "Usage: " << std::endl;
std::cerr << argv[0] << "inputFileName outputFileName sigma (maximum_error) (maximum_kernel_width)" << std::endl;
return EXIT_FAILURE;
}
// Define the dimension of the images
const unsigned int Dimension = VDimension;
typedef float PixelType;
typedef itk::Image<PixelType, Dimension> ImageType;
// Read input
typedef itk::ImageFileReader< ImageType > ReaderType;
typename ReaderType::Pointer reader = ReaderType::New();
reader->SetFileName( argv[1] );
try
{
reader->Update();
}
catch ( itk::ExceptionObject &err)
{
std::cout << "ExceptionObject caught !" << std::endl;
std::cout << err << std::endl;
return EXIT_FAILURE;
}
// Create images for storing result
typedef typename ImageType::Pointer ImageTypePointer;
std::vector<ImageTypePointer> outputs;
for( unsigned int i=0; i<Dimension; i++ )
{
ImageTypePointer output = ImageType::New();
output->SetSpacing( reader->GetOutput()->GetSpacing() );
output->SetOrigin( reader->GetOutput()->GetOrigin() );
output->SetDirection( reader->GetOutput()->GetDirection() );
output->SetLargestPossibleRegion( reader->GetOutput()->GetLargestPossibleRegion() );
output->SetRequestedRegion( reader->GetOutput()->GetRequestedRegion() );
output->SetBufferedRegion( reader->GetOutput()->GetBufferedRegion() );
output->Allocate();
output->FillBuffer( itk::NumericTraits<PixelType>::Zero );
outputs.push_back( output );
}
// Setup operator parameters
double variance = atof( argv[3] );
variance *= variance;
double maxError = 0.001;
unsigned int maxKernelWidth = 100;
if( argc == 5 )
{
maxError = atof( argv[4] );
}
else if( argc > 5 )
{
maxError = atof( argv[4] );
maxKernelWidth = atoi( argv[5] );
}
// Create function
typedef itk::DiscreteHessianGaussianImageFunction< ImageType, PixelType >
HessianGaussianImageFunctionType;
typename HessianGaussianImageFunctionType::TensorType hessian;
typename HessianGaussianImageFunctionType::TensorType::EigenValuesArrayType eigenValues;
typename HessianGaussianImageFunctionType::Pointer function =
HessianGaussianImageFunctionType::New();
function->SetInputImage( reader->GetOutput() );
function->SetMaximumError( maxError );
function->SetMaximumKernelWidth( maxKernelWidth );
function->SetVariance( variance );
function->SetNormalizeAcrossScale( true );
function->SetUseImageSpacing( true );
function->SetInterpolationMode( HessianGaussianImageFunctionType::NearestNeighbourInterpolation );
function->Initialize( );
// Step over input and output images
typedef itk::ImageRegionConstIterator< ImageType > ConstIteratorType;
typedef itk::ImageRegionIterator< ImageType > IteratorType;
ConstIteratorType it ( reader->GetOutput(), reader->GetOutput()->GetRequestedRegion() );
it.GoToBegin();
std::vector< IteratorType > outs;
for( unsigned int i=0; i<Dimension; i++ )
{
IteratorType out( outputs[i], outputs[i]->GetRequestedRegion() );
out.GoToBegin();
outs.push_back( out );
}
typedef typename HessianGaussianImageFunctionType::PointType PointType;
PointType point;
typedef typename HessianGaussianImageFunctionType::ContinuousIndexType ContinuousIndexType;
ContinuousIndexType cindex;
const unsigned long nop = reader->GetOutput()->GetRequestedRegion().GetNumberOfPixels();
unsigned long pixelNumber = 0;
while( !it.IsAtEnd() )
{
if ( pixelNumber < nop / 3 )
{
hessian = function->EvaluateAtIndex( it.GetIndex() );
}
else if ( pixelNumber < nop * 2 / 3 )
{
reader->GetOutput()->TransformIndexToPhysicalPoint( it.GetIndex(), point );
hessian = function->Evaluate( point );
}
else
{
reader->GetOutput()->TransformIndexToPhysicalPoint( it.GetIndex(), point );
reader->GetOutput()->TransformPhysicalPointToContinuousIndex( point, cindex );
hessian = function->EvaluateAtContinuousIndex( cindex );
}
hessian.ComputeEigenValues( eigenValues );
for( unsigned int i=0; i<Dimension; i++ )
{
outs[i].Set( eigenValues[i] );
++outs[i];
}
++it;
++pixelNumber;
}
// Write outputs
typedef unsigned char OutputPixelType;
typedef itk::Image< OutputPixelType, Dimension > OutputImageType;
typedef itk::ImageFileWriter< OutputImageType > WriterType;
typename WriterType::Pointer writer = WriterType::New();
typedef itk::RescaleIntensityImageFilter< ImageType, OutputImageType > RescaleType;
typename RescaleType::Pointer rescaler = RescaleType::New();
rescaler->SetOutputMinimum( itk::NumericTraits<OutputPixelType>::min() );
rescaler->SetOutputMaximum( itk::NumericTraits<OutputPixelType>::max() );
for( unsigned int i=0; i<Dimension; i++ )
{
try
{
// Rescale
rescaler->SetInput( outputs[i] );
// Write
char filename[255];
sprintf( filename, argv[2], i );
writer->SetFileName( filename );
writer->SetInput( rescaler->GetOutput() );
writer->Update();
rescaler->GetOutput()->DisconnectPipeline( );
outputs[i]->DisconnectPipeline( );
}
catch ( itk::ExceptionObject &err)
{
std::cout << "ExceptionObject caught !" << std::endl;
std::cout << err << std::endl;
return EXIT_FAILURE;
}
}
// Test some functions
typedef typename HessianGaussianImageFunctionType::VarianceArrayType VarianceArrayType;
VarianceArrayType varReturned = function->GetVariance();
for ( unsigned int i = 0; i < Dimension; ++i )
{
if ( varReturned[ i ] != variance )
{
std::cout << "GetVariance()[" << i << "] failed. Expected: "
<< variance
<< " but got: "
<< varReturned[ i ] << std::endl;
return EXIT_FAILURE;
}
}
if ( function->GetMaximumError() != maxError )
{
std::cout << "GetMaximumError failed. Expected: "
<< maxError
<< " but got: "
<< function->GetMaximumError() << std::endl;
return EXIT_FAILURE;
}
if ( function->GetNormalizeAcrossScale() != true )
{
std::cout << "GetNormalizeAcrossScale failed. Expected: "
<< true
<< " but got: "
<< function->GetNormalizeAcrossScale() << std::endl;
return EXIT_FAILURE;
}
if ( function->GetUseImageSpacing() != true )
{
std::cout << "GetUseImageSpacing failed. Expected: "
<< true
<< " but got: "
<< function->GetUseImageSpacing() << std::endl;
return EXIT_FAILURE;
}
if ( function->GetMaximumKernelWidth() != maxKernelWidth )
{
std::cout << "GetMaximumKernelWidth failed. Expected: "
<< maxKernelWidth
<< " but got: "
<< function->GetMaximumKernelWidth() << std::endl;
return EXIT_FAILURE;
}
if ( function->GetInterpolationMode() != HessianGaussianImageFunctionType::NearestNeighbourInterpolation )
{
std::cout << "GetInterpolationMode failed. Expected: "
<< HessianGaussianImageFunctionType::NearestNeighbourInterpolation
<< " but got: "
<< function->GetInterpolationMode() << std::endl;
return EXIT_FAILURE;
}
// Call PrintSelf.
function->Print( std::cout );
return EXIT_SUCCESS;
}
int itkDiscreteHessianGaussianImageFunctionTest(int argc, char* argv[] )
{
return itkDiscreteHessianGaussianImageFunctionTestND< 3 >( argc, argv );
}
|