1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/*=========================================================================
Program: GDCM (Grassroots DICOM). A DICOM library
Copyright (c) 2006-2011 Mathieu Malaterre
All rights reserved.
See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "gdcmReader.h"
int main(int argc, char *argv[])
{
if( argc < 3 )
{
std::cerr << argv[0] << " input1.dcm input2.dcm" << std::endl;
return 1;
}
const char *filename1 = argv[1];
const char *filename2 = argv[2];
gdcm::Reader reader1;
reader1.SetFileName( filename1 );
if( !reader1.Read() )
{
return 1;
}
gdcm::Reader reader2;
reader2.SetFileName( filename2 );
if( !reader2.Read() )
{
return 1;
}
const gdcm::File &file1 = reader1.GetFile();
const gdcm::File &file2 = reader2.GetFile();
const gdcm::DataSet &ds1 = file1.GetDataSet();
const gdcm::DataSet &ds2 = file2.GetDataSet();
gdcm::DataSet::ConstIterator it1 = ds1.Begin();
gdcm::DataSet::ConstIterator it2 = ds2.Begin();
const gdcm::DataElement &de1 = *it1;
const gdcm::DataElement &de2 = *it2;
if( de1 == de2 )
{
}
while( it1 != ds1.End() && it2 != ds2.End() && *it1 == *it2 )
{
++it1;
++it2;
}
if( it1 != ds1.End() || it2 != ds2.End() )
{
std::cerr << "Problem with:" << std::endl;
if( it1 != ds1.End() )
{
std::cerr << "ds1: " << *it1 << std::endl;
}
if( it2 != ds2.End() )
{
std::cerr << "ds2: " << *it2 << std::endl;
}
return 1;
}
return 0;
}
|