📄 itkmatchcardinalityimagetoimagemetrictest.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkMatchCardinalityImageToImageMetricTest.cxx,v $
Language: C++
Date: $Date: 2004-10-11 11:24:40 $
Version: $Revision: 1.2 $
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 "itkMatchCardinalityImageToImageMetric.h"
#include "itkImage.h"
#include "itkArray.h"
#include "itkTranslationTransform.h"
#include "itkExceptionObject.h"
#include "itkNearestNeighborInterpolateImageFunction.h"
#include "itkImageFileReader.h"
#include <iostream>
int itkMatchCardinalityImageToImageMetricTest(int argc, char* argv[] )
{
if (argc < 2)
{
std::cout << "Usage: " << argv[0] << " InputFile" << std::endl;
exit (1);
}
typedef itk::Image<unsigned char,2> ImageType;
typedef itk::TranslationTransform<double, 2> TransformType;
typedef TransformType::OutputVectorType OffsetType;
typedef itk::MatchCardinalityImageToImageMetric<ImageType,ImageType> MetricType;
typedef itk::ImageFileReader<ImageType> ReaderType;
typedef itk::NearestNeighborInterpolateImageFunction<ImageType,double> InterpolatorType;
ReaderType::Pointer reader = ReaderType::New();
MetricType::Pointer metric = MetricType::New();
TransformType::Pointer transform = TransformType::New();
InterpolatorType::Pointer interpolator = InterpolatorType::New();
itk::Array<double> offset(2);
reader->SetFileName (argv[1]);
reader->Update();
metric->SetMovingImage (reader->GetOutput());
metric->SetFixedImage (reader->GetOutput());
metric->SetInterpolator (interpolator);
metric->SetTransform (transform);
metric->SetFixedImageRegion (reader->GetOutput()->GetLargestPossibleRegion());
metric->Initialize();
std::cout << "First measure matches..." << std::endl;
for (float x = -200.0; x <= 200.0; x+= 50.0)
{
offset[0] = x;
for (float y = 0.0; y <= 0.0; y+= 10.0)
{
offset[1] = y;
try
{
std::cout << "Offset: " << offset << " = " << metric->GetValue(offset) << std::endl;
}
catch( itk::ExceptionObject & exp )
{
std::cerr << "Exception thrown while computing metric " << std::endl;
std::cerr << exp << std::endl;
return EXIT_FAILURE;
}
}
}
std::cout << "Now measure mismatches..." << std::endl;
metric->MeasureMatchesOff();
for (float x = -200.0; x <= 200.0; x+= 50.0)
{
offset[0] = x;
for (float y = 0.0; y <= 0.0; y+= 10.0)
{
offset[1] = y;
try
{
std::cout << "Offset: " << offset << " = " << metric->GetValue(offset) << std::endl;
}
catch( itk::ExceptionObject & exp )
{
std::cerr << "Exception thrown while computing metric " << std::endl;
std::cerr << exp << std::endl;
return EXIT_FAILURE;
}
}
}
return EXIT_SUCCESS;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -