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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* 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
*
* http://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.
*
*=========================================================================*/
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"
#include "itkDiscreteHessianGaussianImageFunction.h"
#include "itkRescaleIntensityImageFilter.h"
#include "itkTestingMacros.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;
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>::ZeroValue() );
// 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();
IteratorType outIter( output, output->GetRequestedRegion() );
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 );
PixelType maxEigen = eigenValues[0];
for (unsigned int i = 1; i < Dimension; ++i)
{
maxEigen = std::max(eigenValues[i], maxEigen);
}
outIter.Set( maxEigen );
++outIter;
++it;
++pixelNumber;
}
// Write outputs
typedef itk::ImageFileWriter< ImageType > WriterType;
typename WriterType::Pointer writer = WriterType::New();
try
{
// Write
writer->SetFileName( argv[2] );
writer->SetInput( output );
writer->Update();
std::cout << "Writing " << argv[2]<< std::endl;
}
catch ( itk::ExceptionObject &err)
{
std::cout << "ExceptionObject caught !" << std::endl;
std::cout << err << std::endl;
return EXIT_FAILURE;
}
const bool trueValue = true;
const bool falseValue = false;
// 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;
}
}
// Check that VarianceArrayType can be changed
VarianceArrayType varChanged = varReturned;
for ( unsigned int i = 0; i < Dimension; ++i )
{
varChanged[i] *= 2.0;
}
function->SetVariance( varChanged );
varReturned = function->GetVariance();
for ( unsigned int i = 0; i < Dimension; ++i )
{
if ( varReturned[ i ] != varChanged[i] )
{
std::cout << "GetVariance()[" << i << "] failed. Expected: "
<< varChanged[i]
<< " but got: "
<< varReturned[ i ] << std::endl;
return EXIT_FAILURE;
}
}
const double pivalue = 3.1415;
double pivalues[Dimension];
for ( unsigned int i = 0; i < Dimension; ++i )
{
pivalues[i] = pivalue;
}
function->SetVariance( pivalues );
varReturned = function->GetVariance();
for ( unsigned int i = 0; i < Dimension; ++i )
{
if ( varReturned[ i ] != pivalue )
{
std::cout << "GetVariance()[" << i << "] failed. Expected: "
<< pivalue
<< " but got: "
<< varReturned[ i ] << std::endl;
return EXIT_FAILURE;
}
}
TEST_SET_GET_VALUE( maxError, function->GetMaximumError() );
function->NormalizeAcrossScaleOn();
TEST_SET_GET_VALUE( trueValue, function->GetNormalizeAcrossScale() );
function->NormalizeAcrossScaleOff();
TEST_SET_GET_VALUE( falseValue, function->GetNormalizeAcrossScale() );
function->SetNormalizeAcrossScale(trueValue);
TEST_SET_GET_VALUE( trueValue, function->GetNormalizeAcrossScale() );
function->SetNormalizeAcrossScale(falseValue);
TEST_SET_GET_VALUE( falseValue, function->GetNormalizeAcrossScale() );
function->UseImageSpacingOn();
TEST_SET_GET_VALUE( trueValue, function->GetUseImageSpacing() );
function->UseImageSpacingOff();
TEST_SET_GET_VALUE( falseValue, function->GetUseImageSpacing() );
function->SetUseImageSpacing(trueValue);
TEST_SET_GET_VALUE( trueValue, function->GetUseImageSpacing() );
function->SetUseImageSpacing(falseValue);
TEST_SET_GET_VALUE( falseValue, function->GetUseImageSpacing() );
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 );
// Exercise another interpolation mode: LinearInterpolation
{
function->SetInterpolationMode( HessianGaussianImageFunctionType::LinearInterpolation );
const ImageType * inputImage = reader->GetOutput();
typename ImageType::RegionType region = inputImage->GetBufferedRegion();
typename ImageType::SizeType size = region.GetSize();
typename ImageType::IndexType index = region.GetIndex();
// Aim for the pixel at the center of the image
for( unsigned int i=0; i<Dimension; ++i )
{
index[i] += size[i] / 2;
}
hessian = function->EvaluateAtIndex( index );
inputImage->TransformIndexToPhysicalPoint( index, point );
hessian = function->Evaluate( point );
// Exercise the fractional computation of the linear interpolator
for( unsigned int i=0; i<Dimension; ++i )
{
cindex[i] = static_cast<double>( index[i] ) + 0.5;
}
hessian = function->EvaluateAtContinuousIndex( cindex );
}
return EXIT_SUCCESS;
}
int itkDiscreteHessianGaussianImageFunctionTest(int argc, char* argv[] )
{
return itkDiscreteHessianGaussianImageFunctionTestND< 3 >( argc, argv );
}
|