#include <fstream>
int
main(int argc, char * argv[])
{
if (argc < 3)
{
std::cerr << "Missing Parameters " << std::endl;
std::cerr << "Usage: " << argv[0];
std::cerr << " landmarksFile fixedImage outputDisplacementField"
<< std::endl;
return EXIT_FAILURE;
}
using VectorComponentType = float;
using PixelType = unsigned char;
fixedReader->SetFileName(argv[2]);
try
{
fixedReader->Update();
}
catch (const itk::ExceptionObject & excp)
{
std::cerr << "Exception thrown " << std::endl;
std::cerr << excp << std::endl;
return EXIT_FAILURE;
}
using FilterType =
filter->SetOutputSpacing(fixedImage->GetSpacing());
filter->SetOutputOrigin(fixedImage->GetOrigin());
filter->SetOutputRegion(fixedImage->GetLargestPossibleRegion());
filter->SetOutputDirection(fixedImage->GetDirection());
using LandmarkContainerType = FilterType::LandmarkContainer;
using LandmarkPointType = FilterType::LandmarkPointType;
std::ifstream pointsFile;
pointsFile.open(argv[1]);
LandmarkPointType sourcePoint;
pointsFile >> sourcePoint;
LandmarkPointType targetPoint;
pointsFile >> targetPoint;
unsigned int pointId = 0;
while (!pointsFile.fail())
{
sourceLandmarks->InsertElement(pointId, sourcePoint);
targetLandmarks->InsertElement(pointId, targetPoint);
pointId++;
pointsFile >> sourcePoint;
pointsFile >> targetPoint;
}
pointsFile.close();
filter->SetSourceLandmarks(sourceLandmarks);
filter->SetTargetLandmarks(targetLandmarks);
try
{
filter->UpdateLargestPossibleRegion();
}
catch (const itk::ExceptionObject & excp)
{
std::cerr << "Exception thrown " << std::endl;
std::cerr << excp << std::endl;
return EXIT_FAILURE;
}
writer->SetInput(filter->GetOutput());
writer->SetFileName(argv[3]);
filter->Print(std::cout);
try
{
writer->Update();
}
catch (const itk::ExceptionObject & excp)
{
std::cerr << "Exception thrown by writer" << std::endl;
std::cerr << excp << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}