#include <math.h>
int main(int argc, char *argv [])
{
if( argc < 2 ) return 1;
const char *filename = argv[1];
{
std::cerr << "Failed to read: " << filename << std::endl;
return 1;
}
const gdcm::PrivateTag tcolsrowsframes( 0x200d, 0x01,
"Philips US Imaging DD 036" );
const gdcm::PrivateTag tvoxelspacing( 0x200d, 0x03,
"Philips US Imaging DD 036" );
std::string outfilename = "outiu22.dcm";
{
std::cerr << "could not write: " << outfilename << std::endl;
return 1;
}
return 0;
}