Required input file: bus.stl
#include "writers/aslVTKFormatWriters.h"
#include "readers/aslVTKFormatReaders.h"
#include "aslGenerators.h"
#include "num/aslDataResampling.h"
#include "data/aslDataWithGhostNodes.h"
{
cout << "Test of MINC files reader..." << endl;
auto data(
asl::read(
"subject04_crisp_v.mnc", 0));
*data,
"data");
}
{
cout << "Test of MINC files reader +..." << endl;
auto data(
asl::read(
"subject04_crisp_v.mnc", 0));
dc.init();
dc.execute();
*dc.getDataOut(),
"data");
}
{
cout << "Test of Surface STL files reader..." << endl;
*data,
"data");
}
{
return 0;
}