#include <string>
#include <iostream>
int
main(int argc, char * argv[])
{
if (argc < 2)
{
std::cout << "Usage: " << argv[0] << " Input(.vtk)" << std::endl;
return EXIT_FAILURE;
}
std::string InputFilename = argv[1];
std::cout << "Input file: " << InputFilename << std::endl;
using CoordType = float;
polyDataReader->SetFileName(InputFilename.c_str());
try
{
polyDataReader->Update();
}
catch (const itk::ExceptionObject & error)
{
std::cerr << "Error: " << error << std::endl;
return EXIT_FAILURE;
}
std::cout << "polyDataReader:" << std::endl;
std::cout << polyDataReader << std::endl;
std::cout << "Testing itk::VTKPolyDataReader" << std::endl;
unsigned int numberOfPoints = mesh->GetNumberOfPoints();
unsigned int numberOfCells = mesh->GetNumberOfCells();
std::cout << "numberOfPoints= " << numberOfPoints << std::endl;
std::cout << "numberOfCells= " << numberOfCells << std::endl;
if (!numberOfPoints)
{
std::cerr << "ERROR: numberOfPoints= " << numberOfPoints << std::endl;
return EXIT_FAILURE;
}
if (!numberOfCells)
{
std::cerr << "ERROR: numberOfCells= " << numberOfCells << std::endl;
return EXIT_FAILURE;
}
for (unsigned int i = 0; i < numberOfPoints; ++i)
{
bool pointExists = mesh->GetPoint(i, &
pp);
if (pointExists)
{
std::cout <<
"Point is = " <<
pp << std::endl;
}
}
return EXIT_SUCCESS;
}