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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
/*=========================================================================
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 "gdcmPhotometricInterpretation.h"
#include <cstring> // strlen
int TestPhotometricInterpretation(int, char *[])
{
gdcm::PhotometricInterpretation pi;
int end = gdcm::PhotometricInterpretation::PI_END;
for( int i = 1; i < end; ++i)
{
const char *pistr = gdcm::PhotometricInterpretation::GetPIString( (gdcm::PhotometricInterpretation::PIType)i );
if( strlen( pistr ) % 2 )
{
std::cerr << pistr << std::endl;
return 1;
}
}
pi = gdcm::PhotometricInterpretation::RGB;
pi = gdcm::PhotometricInterpretation::GetPIType( "MONOCHROME2" );
if( pi != gdcm::PhotometricInterpretation::MONOCHROME2 )
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
pi = gdcm::PhotometricInterpretation::GetPIType( "MONOCHROME2 " );
if( pi != gdcm::PhotometricInterpretation::MONOCHROME2 )
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
pi = gdcm::PhotometricInterpretation::GetPIType( " MONOCHROME2 " );
if( pi != gdcm::PhotometricInterpretation::MONOCHROME2 )
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
pi = gdcm::PhotometricInterpretation::GetPIType( " MONOCHROME2 " );
if( pi != gdcm::PhotometricInterpretation::MONOCHROME2 )
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
pi = gdcm::PhotometricInterpretation::GetPIType( " MONOCHROME2 " );
if( pi != gdcm::PhotometricInterpretation::MONOCHROME2 )
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
pi = gdcm::PhotometricInterpretation::GetPIType( "MONOCHROME" );
if( pi != gdcm::PhotometricInterpretation::MONOCHROME1 )
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
pi = gdcm::PhotometricInterpretation::GetPIType( "YBR_PARTIAL_42 " );
if( pi != gdcm::PhotometricInterpretation::YBR_PARTIAL_422)
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
pi = gdcm::PhotometricInterpretation::GetPIType( "PALETTE" );
if( pi != gdcm::PhotometricInterpretation::PALETTE_COLOR )
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
pi = gdcm::PhotometricInterpretation::GetPIType( "YBR_FULL_4" );
if( pi != gdcm::PhotometricInterpretation::YBR_FULL_422)
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
// FIXME ?
pi = gdcm::PhotometricInterpretation::GetPIType( "YBR_FUL" );
if( pi != gdcm::PhotometricInterpretation::YBR_FULL )
{
std::cerr << "PhotometricInterpretation: " << pi << std::endl;
return 1;
}
return 0;
}
|