#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;
  }
 
  constexpr unsigned int Dimension = 2;
  using VectorComponentType = float;
 
 
 
 
  using PixelType = unsigned char;
 
 
 
  auto fixedReader = FixedReaderType::New();
 
  fixedReader->SetFileName(argv[2]);
 
  try
  {
    fixedReader->Update();
  }
  {
    std::cerr << "Exception thrown " << std::endl;
    std::cerr << excp << std::endl;
    return EXIT_FAILURE;
  }
 
 
  const FixedImageType::ConstPointer fixedImage = fixedReader->GetOutput();
 
  using FilterType =
 
  auto filter = FilterType::New();
 
  filter->SetOutputSpacing(fixedImage->GetSpacing());
  filter->SetOutputOrigin(fixedImage->GetOrigin());
  filter->SetOutputRegion(fixedImage->GetLargestPossibleRegion());
  filter->SetOutputDirection(fixedImage->GetDirection());
 
  
  
  using LandmarkContainerType = FilterType::LandmarkContainer;
  using LandmarkPointType = FilterType::LandmarkPointType;
 
  auto          sourceLandmarks = LandmarkContainerType::New();
  auto          targetLandmarks = LandmarkContainerType::New();
  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();
  }
  {
    std::cerr << "Exception thrown " << std::endl;
    std::cerr << excp << std::endl;
    return EXIT_FAILURE;
  }
 
  
 
  auto writer = WriterType::New();
  writer->SetInput(filter->GetOutput());
  writer->SetFileName(argv[3]);
  filter->Print(std::cout);
  try
  {
    writer->Update();
  }
  {
    std::cerr << "Exception thrown by writer" << std::endl;
    std::cerr << excp << std::endl;
    return EXIT_FAILURE;
  }
  return EXIT_SUCCESS;
  
}
Standard exception handling object.
Data source that reads image data from a single file.
Writes image data to a single file.
Templated n-dimensional image class.
Computes a displacement field from two sets of landmarks.
A templated class holding a n-Dimensional vector.