X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmHeader.cxx;h=b5b3b07afc4f050ee386c8d8a574ed27e313d6a6;hb=5a0d183707a94e875a595036f64d0bd506faf618;hp=8773fdd58771b9ddd7826b52171148d5b2929e3a;hpb=3869544e5153cebbd44ad8778cbaf35883bfb993;p=gdcm.git diff --git a/src/gdcmHeader.cxx b/src/gdcmHeader.cxx index 8773fdd5..b5b3b07a 100644 --- a/src/gdcmHeader.cxx +++ b/src/gdcmHeader.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmHeader.cxx,v $ Language: C++ - Date: $Date: 2005/01/07 22:19:48 $ - Version: $Revision: 1.226 $ + Date: $Date: 2005/01/11 23:06:35 $ + Version: $Revision: 1.231 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -22,6 +22,7 @@ #include "gdcmDebug.h" #include "gdcmTS.h" #include "gdcmValEntry.h" +#include "gdcmBinEntry.h" #include //sscanf #include @@ -44,11 +45,11 @@ Header::Header( std::string const &filename ): // is found by indirection through the "Image Location"). // Inside the group pointed by "Image Location" the searched element // is conventionally the element 0x0010 (when the norm is respected). - // When the "Image Location" is absent we default to group 0x7fe0. + // When the "Image Location" is Missing we default to group 0x7fe0. // Note: this IS the right place for the code // Image Location - const std::string &imgLocation = GetEntryByNumber(0x0028, 0x0200); + const std::string &imgLocation = GetEntry(0x0028, 0x0200); if ( imgLocation == GDCM_UNFOUND ) { // default value @@ -81,7 +82,7 @@ Header::Header( std::string const &filename ): // Let's create a VirtualDictEntry to allow a further VR modification // and force VR to match with BitsAllocated. - DocEntry *entry = GetDocEntryByNumber(GrPixel, NumPixel); + DocEntry *entry = GetDocEntry(GrPixel, NumPixel); if ( entry != 0 ) { @@ -136,20 +137,20 @@ bool Header::Write(std::string fileName, FileType filetype) } // Bits Allocated - if ( GetEntryByNumber(0x0028,0x0100) == "12") + if ( GetEntry(0x0028,0x0100) == "12") { - SetEntryByNumber("16", 0x0028,0x0100); + SetEntry("16", 0x0028,0x0100); } /// \todo correct 'Pixel group' Length if necessary - int i_lgPix = GetEntryLengthByNumber(GrPixel, NumPixel); + int i_lgPix = GetEntryLength(GrPixel, NumPixel); if (i_lgPix != -2) { // no (GrPixel, NumPixel) element std::string s_lgPix = Util::Format("%d", i_lgPix+12); s_lgPix = Util::DicomString( s_lgPix.c_str() ); - ReplaceOrCreateByNumber(s_lgPix,GrPixel, 0x0000); + ReplaceOrCreate(s_lgPix,GrPixel, 0x0000); } // FIXME : should be nice if we could move it to File @@ -157,45 +158,74 @@ bool Header::Write(std::string fileName, FileType filetype) // Drop Palette Color, if necessary - if ( GetEntryByNumber(0x0028,0x0002).c_str()[0] == '3' ) + if ( GetEntry(0x0028,0x0002).c_str()[0] == '3' ) { // if SamplesPerPixel = 3, sure we don't need any LUT ! // Drop 0028|1101, 0028|1102, 0028|1103 // Drop 0028|1201, 0028|1202, 0028|1203 - DocEntry *e = GetDocEntryByNumber(0x0028,0x01101); + DocEntry *e = GetDocEntry(0x0028,0x01101); if (e) { RemoveEntryNoDestroy(e); } - e = GetDocEntryByNumber(0x0028,0x1102); + e = GetDocEntry(0x0028,0x1102); if (e) { RemoveEntryNoDestroy(e); } - e = GetDocEntryByNumber(0x0028,0x1103); + e = GetDocEntry(0x0028,0x1103); if (e) { RemoveEntryNoDestroy(e); } - e = GetDocEntryByNumber(0x0028,0x01201); + e = GetDocEntry(0x0028,0x01201); if (e) { RemoveEntryNoDestroy(e); } - e = GetDocEntryByNumber(0x0028,0x1202); + e = GetDocEntry(0x0028,0x1202); if (e) { RemoveEntryNoDestroy(e); } - e = GetDocEntryByNumber(0x0028,0x1203); + e = GetDocEntry(0x0028,0x1203); if (e) { RemoveEntryNoDestroy(e); } } + +#ifdef GDCM_WORDS_BIGENDIAN + // Super Duper hack that will make gdcm a BOMB ! but should + // Fix temporarily the dashboard + BinEntry *b = GetBinEntry(0x7fe0,0x0010); + if ( GetEntry(0x0028,0x0100) == "16") + { + uint16_t *im16 = (uint16_t*)b->GetBinArea(); + int lgr = b->GetLength(); + for( int i = 0; i < lgr / 2; i++ ) + { + im16[i]= (im16[i] >> 8) | (im16[i] << 8 ); + } + } +#endif //GDCM_WORDS_BIGENDIAN + Document::WriteContent(fp,filetype); +#ifdef GDCM_WORDS_BIGENDIAN + // Flip back the pixel ... I told you this is a hack + if ( GetEntry(0x0028,0x0100) == "16") + { + uint16_t *im16 = (uint16_t*)b->GetBinArea(); + int lgr = b->GetLength(); + for( int i = 0; i < lgr / 2; i++ ) + { + im16[i]= (im16[i] >> 8) | (im16[i] << 8 ); + } + } +#endif //GDCM_WORDS_BIGENDIAN + fp->close(); delete fp; @@ -224,24 +254,24 @@ bool Header::IsReadable() return false; } - const std::string &res = GetEntryByNumber(0x0028, 0x0005); + const std::string &res = GetEntry(0x0028, 0x0005); if ( res != GDCM_UNFOUND && atoi(res.c_str()) > 4 ) { return false; // Image Dimensions } - if ( !GetDocEntryByNumber(0x0028, 0x0100) ) + if ( !GetDocEntry(0x0028, 0x0100) ) { return false; // "Bits Allocated" } - if ( !GetDocEntryByNumber(0x0028, 0x0101) ) + if ( !GetDocEntry(0x0028, 0x0101) ) { return false; // "Bits Stored" } - if ( !GetDocEntryByNumber(0x0028, 0x0102) ) + if ( !GetDocEntry(0x0028, 0x0102) ) { return false; // "High Bit" } - if ( !GetDocEntryByNumber(0x0028, 0x0103) ) + if ( !GetDocEntry(0x0028, 0x0103) ) { return false; // "Pixel Representation" i.e. 'Sign' } @@ -256,7 +286,7 @@ bool Header::IsReadable() */ int Header::GetXSize() { - const std::string &strSize = GetEntryByNumber(0x0028,0x0011); + const std::string &strSize = GetEntry(0x0028,0x0011); if ( strSize == GDCM_UNFOUND ) { return 0; @@ -273,7 +303,7 @@ int Header::GetXSize() */ int Header::GetYSize() { - const std::string &strSize = GetEntryByNumber(0x0028,0x0010); + const std::string &strSize = GetEntry(0x0028,0x0010); if ( strSize != GDCM_UNFOUND ) { return atoi( strSize.c_str() ); @@ -292,7 +322,7 @@ int Header::GetYSize() * \brief Retrieve the number of planes of volume or the number * of frames of a multiframe. * \warning When present we consider the "Number of Frames" as the third - * dimension. When absent we consider the third dimension as + * dimension. When Missing we consider the third dimension as * being the ACR-NEMA "Planes" tag content. * @return The encountered size when found, 1 by default (single image). */ @@ -300,14 +330,14 @@ int Header::GetZSize() { // Both DicomV3 and ACR/Nema consider the "Number of Frames" // as the third dimension. - const std::string &strSize = GetEntryByNumber(0x0028,0x0008); + const std::string &strSize = GetEntry(0x0028,0x0008); if ( strSize != GDCM_UNFOUND ) { return atoi( strSize.c_str() ); } // We then consider the "Planes" entry as the third dimension - const std::string &strSize2 = GetEntryByNumber(0x0028,0x0012); + const std::string &strSize2 = GetEntry(0x0028,0x0012); if ( strSize2 != GDCM_UNFOUND ) { return atoi( strSize2.c_str() ); @@ -324,7 +354,7 @@ int Header::GetZSize() float Header::GetXSpacing() { float xspacing, yspacing; - const std::string &strSpacing = GetEntryByNumber(0x0028,0x0030); + const std::string &strSpacing = GetEntry(0x0028,0x0030); if ( strSpacing == GDCM_UNFOUND ) { @@ -372,7 +402,7 @@ float Header::GetXSpacing() float Header::GetYSpacing() { float yspacing = 1.; - std::string strSpacing = GetEntryByNumber(0x0028,0x0030); + std::string strSpacing = GetEntry(0x0028,0x0030); if ( strSpacing == GDCM_UNFOUND ) { @@ -404,17 +434,18 @@ float Header::GetZSpacing() // disjointes (Spacing between Slices > Slice Thickness) // Slice Thickness : epaisseur de tissus sur laquelle est acquis le signal // ca interesse le physicien de l'IRM, pas le visualisateur de volumes ... - // Si le Spacing Between Slices est absent, + // Si le Spacing Between Slices est Missing, // on suppose que les coupes sont jointives - const std::string &strSpacingBSlices = GetEntryByNumber(0x0018,0x0088); + const std::string &strSpacingBSlices = GetEntry(0x0018,0x0088); if ( strSpacingBSlices == GDCM_UNFOUND ) { - gdcmVerboseMacro("Unfound StrSpacingBSlices"); - const std::string &strSliceThickness = GetEntryByNumber(0x0018,0x0050); + gdcmVerboseMacro("Unfound Spacing Between Slices (0018,0088)"); + const std::string &strSliceThickness = GetEntry(0x0018,0x0050); if ( strSliceThickness == GDCM_UNFOUND ) { + gdcmVerboseMacro("Unfound Slice Thickness (0018,0050)"); return 1.; } else @@ -438,13 +469,13 @@ float Header::GetRescaleIntercept() { float resInter = 0.; /// 0028 1052 DS IMG Rescale Intercept - const std::string &strRescInter = GetEntryByNumber(0x0028,0x1052); + const std::string &strRescInter = GetEntry(0x0028,0x1052); if ( strRescInter != GDCM_UNFOUND ) { if( sscanf( strRescInter.c_str(), "%f", &resInter) != 1 ) { // bug in the element 0x0028,0x1052 - gdcmVerboseMacro( "Rescale Intercept is empty." ); + gdcmVerboseMacro( "Rescale Intercept (0028,1052) is empty." ); } } @@ -459,13 +490,13 @@ float Header::GetRescaleSlope() { float resSlope = 1.; //0028 1053 DS IMG Rescale Slope - std::string strRescSlope = GetEntryByNumber(0x0028,0x1053); + std::string strRescSlope = GetEntry(0x0028,0x1053); if ( strRescSlope != GDCM_UNFOUND ) { if( sscanf( strRescSlope.c_str(), "%f", &resSlope) != 1) { // bug in the element 0x0028,0x1053 - gdcmVerboseMacro( "Rescale Slope is empty."); + gdcmVerboseMacro( "Rescale Slope (0028,1053) is empty."); } } @@ -488,12 +519,12 @@ int Header::GetNumberOfScalarComponents() // 0028 0100 US IMG Bits Allocated // (in order no to be messed up by old RGB images) - if ( GetEntryByNumber(0x0028,0x0100) == "24" ) + if ( GetEntry(0x0028,0x0100) == "24" ) { return 3; } - std::string strPhotometricInterpretation = GetEntryByNumber(0x0028,0x0004); + std::string strPhotometricInterpretation = GetEntry(0x0028,0x0004); if ( ( strPhotometricInterpretation == "PALETTE COLOR ") ) { @@ -533,7 +564,7 @@ int Header::GetNumberOfScalarComponentsRaw() { // 0028 0100 US IMG Bits Allocated // (in order no to be messed up by old RGB images) - if ( Header::GetEntryByNumber(0x0028,0x0100) == "24" ) + if ( Header::GetEntry(0x0028,0x0100) == "24" ) { return 3; } @@ -567,12 +598,12 @@ int Header::GetNumberOfScalarComponentsRaw() float Header::GetXOrigin() { float xImPos, yImPos, zImPos; - std::string strImPos = GetEntryByNumber(0x0020,0x0032); + std::string strImPos = GetEntry(0x0020,0x0032); if ( strImPos == GDCM_UNFOUND ) { gdcmVerboseMacro( "Unfound Image Position Patient (0020,0032)"); - strImPos = GetEntryByNumber(0x0020,0x0030); // For ACR-NEMA images + strImPos = GetEntry(0x0020,0x0030); // For ACR-NEMA images if ( strImPos == GDCM_UNFOUND ) { gdcmVerboseMacro( "Unfound Image Position (RET) (0020,0030)"); @@ -598,12 +629,12 @@ float Header::GetXOrigin() float Header::GetYOrigin() { float xImPos, yImPos, zImPos; - std::string strImPos = GetEntryByNumber(0x0020,0x0032); + std::string strImPos = GetEntry(0x0020,0x0032); if ( strImPos == GDCM_UNFOUND) { gdcmVerboseMacro( "Unfound Image Position Patient (0020,0032)"); - strImPos = GetEntryByNumber(0x0020,0x0030); // For ACR-NEMA images + strImPos = GetEntry(0x0020,0x0030); // For ACR-NEMA images if ( strImPos == GDCM_UNFOUND ) { gdcmVerboseMacro( "Unfound Image Position (RET) (0020,0030)"); @@ -631,7 +662,7 @@ float Header::GetYOrigin() float Header::GetZOrigin() { float xImPos, yImPos, zImPos; - std::string strImPos = GetEntryByNumber(0x0020,0x0032); + std::string strImPos = GetEntry(0x0020,0x0032); if ( strImPos != GDCM_UNFOUND ) { @@ -646,7 +677,7 @@ float Header::GetZOrigin() } } - strImPos = GetEntryByNumber(0x0020,0x0030); // For ACR-NEMA images + strImPos = GetEntry(0x0020,0x0030); // For ACR-NEMA images if ( strImPos != GDCM_UNFOUND ) { if( sscanf( strImPos.c_str(), @@ -661,7 +692,7 @@ float Header::GetZOrigin() } } - std::string strSliceLocation = GetEntryByNumber(0x0020,0x1041); // for *very* old ACR-NEMA images + std::string strSliceLocation = GetEntry(0x0020,0x1041); // for *very* old ACR-NEMA images if ( strSliceLocation != GDCM_UNFOUND ) { if( sscanf( strSliceLocation.c_str(), "%f", &zImPos) != 1) @@ -676,7 +707,7 @@ float Header::GetZOrigin() } gdcmVerboseMacro( "Unfound Slice Location (0020,1041)"); - std::string strLocation = GetEntryByNumber(0x0020,0x0050); + std::string strLocation = GetEntry(0x0020,0x0050); if ( strLocation != GDCM_UNFOUND ) { if( sscanf( strLocation.c_str(), "%f", &zImPos) != 1) @@ -707,7 +738,7 @@ int Header::GetImageNumber() // faster function. sscanf() can do all possible conversions whereas // atoi() can only do single decimal integer conversions. //0020 0013 IS REL Image Number - std::string strImNumber = GetEntryByNumber(0x0020,0x0013); + std::string strImNumber = GetEntry(0x0020,0x0013); if ( strImNumber != GDCM_UNFOUND ) { return atoi( strImNumber.c_str() ); @@ -722,7 +753,7 @@ int Header::GetImageNumber() ModalityType Header::GetModality() { // 0008 0060 CS ID Modality - std::string strModality = GetEntryByNumber(0x0008,0x0060); + std::string strModality = GetEntry(0x0008,0x0060); if ( strModality != GDCM_UNFOUND ) { if ( strModality.find("AU") < strModality.length()) return AU; @@ -785,10 +816,10 @@ ModalityType Header::GetModality() */ int Header::GetBitsStored() { - std::string strSize = GetEntryByNumber( 0x0028, 0x0101 ); + std::string strSize = GetEntry( 0x0028, 0x0101 ); if ( strSize == GDCM_UNFOUND ) { - gdcmVerboseMacro("This is supposed to be mandatory"); + gdcmVerboseMacro("(0028,0101) is supposed to be mandatory"); return 0; // It's supposed to be mandatory // the caller will have to check } @@ -797,16 +828,16 @@ int Header::GetBitsStored() /** * \brief Retrieve the high bit position. - * \warning The method defaults to 0 when information is absent. + * \warning The method defaults to 0 when information is Missing. * The responsability of checking this value is left to the caller. - * @return The high bit positin when present. 0 when absent. + * @return The high bit positin when present. 0 when Missing. */ int Header::GetHighBitPosition() { - std::string strSize = GetEntryByNumber( 0x0028, 0x0102 ); + std::string strSize = GetEntry( 0x0028, 0x0102 ); if ( strSize == GDCM_UNFOUND ) { - gdcmVerboseMacro( "This is supposed to be mandatory"); + gdcmVerboseMacro( "(0028,0102) is supposed to be mandatory"); return 0; } return atoi( strSize.c_str() ); @@ -814,16 +845,16 @@ int Header::GetHighBitPosition() /** * \brief Check wether the pixels are signed or UNsigned data. - * \warning The method defaults to false (UNsigned) when information is absent. + * \warning The method defaults to false (UNsigned) when information is Missing. * The responsability of checking this value is left to the caller. * @return True when signed, false when UNsigned */ bool Header::IsSignedPixelData() { - std::string strSize = GetEntryByNumber( 0x0028, 0x0103 ); + std::string strSize = GetEntry( 0x0028, 0x0103 ); if ( strSize == GDCM_UNFOUND ) { - gdcmVerboseMacro( "This is supposed to be mandatory"); + gdcmVerboseMacro( "(0028,0103) is supposed to be mandatory"); return false; } int sign = atoi( strSize.c_str() ); @@ -842,10 +873,10 @@ bool Header::IsSignedPixelData() */ int Header::GetBitsAllocated() { - std::string strSize = GetEntryByNumber(0x0028,0x0100); + std::string strSize = GetEntry(0x0028,0x0100); if ( strSize == GDCM_UNFOUND ) { - gdcmVerboseMacro( "This is supposed to be mandatory"); + gdcmVerboseMacro( "(0028,0100) is supposed to be mandatory"); return 0; // It's supposed to be mandatory // the caller will have to check } @@ -860,10 +891,10 @@ int Header::GetBitsAllocated() */ int Header::GetSamplesPerPixel() { - const std::string& strSize = GetEntryByNumber(0x0028,0x0002); + const std::string& strSize = GetEntry(0x0028,0x0002); if ( strSize == GDCM_UNFOUND ) { - gdcmVerboseMacro( "This is supposed to be mandatory"); + gdcmVerboseMacro( "(0028,0002) is supposed to be mandatory"); return 1; // Well, it's supposed to be mandatory ... // but sometimes it's missing : *we* assume Gray pixels } @@ -877,7 +908,7 @@ int Header::GetSamplesPerPixel() */ bool Header::IsMonochrome() { - const std::string& PhotometricInterp = GetEntryByNumber( 0x0028, 0x0004 ); + const std::string& PhotometricInterp = GetEntry( 0x0028, 0x0004 ); if ( Util::DicomStringEqual(PhotometricInterp, "MONOCHROME1") || Util::DicomStringEqual(PhotometricInterp, "MONOCHROME2") ) { @@ -885,7 +916,7 @@ bool Header::IsMonochrome() } if ( PhotometricInterp == GDCM_UNFOUND ) { - gdcmVerboseMacro( "Absent Photometric Interpretation"); + gdcmVerboseMacro( "Not found : Photometric Interpretation (0028,0004)"); } return false; } @@ -897,14 +928,14 @@ bool Header::IsMonochrome() */ bool Header::IsPaletteColor() { - std::string PhotometricInterp = GetEntryByNumber( 0x0028, 0x0004 ); + std::string PhotometricInterp = GetEntry( 0x0028, 0x0004 ); if ( PhotometricInterp == "PALETTE COLOR " ) { return true; } if ( PhotometricInterp == GDCM_UNFOUND ) { - gdcmVerboseMacro( "Absent Palette color"); + gdcmVerboseMacro( "Not found : Palette color (0028,0004)"); } return false; } @@ -916,14 +947,14 @@ bool Header::IsPaletteColor() */ bool Header::IsYBRFull() { - std::string PhotometricInterp = GetEntryByNumber( 0x0028, 0x0004 ); + std::string PhotometricInterp = GetEntry( 0x0028, 0x0004 ); if ( PhotometricInterp == "YBR_FULL" ) { return true; } if ( PhotometricInterp == GDCM_UNFOUND ) { - gdcmVerboseMacro( "Absent YBR Full"); + gdcmVerboseMacro( "Not found : YBR Full (0028,0004)"); } return false; } @@ -935,10 +966,10 @@ bool Header::IsYBRFull() */ int Header::GetPlanarConfiguration() { - std::string strSize = GetEntryByNumber(0x0028,0x0006); + std::string strSize = GetEntry(0x0028,0x0006); if ( strSize == GDCM_UNFOUND ) { - gdcmVerboseMacro( "Absent Planar Configuration"); + gdcmVerboseMacro( "Not found : Planar Configuration (0028,0006)"); return 0; } return atoi( strSize.c_str() ); @@ -953,7 +984,7 @@ int Header::GetPixelSize() { // 0028 0100 US IMG Bits Allocated // (in order no to be messed up by old RGB images) - // if (Header::GetEntryByNumber(0x0028,0x0100) == "24") + // if (Header::GetEntry(0x0028,0x0100) == "24") // return 3; std::string pixelType = GetPixelType(); @@ -993,10 +1024,10 @@ int Header::GetPixelSize() */ std::string Header::GetPixelType() { - std::string bitsAlloc = GetEntryByNumber(0x0028, 0x0100); // Bits Allocated + std::string bitsAlloc = GetEntry(0x0028, 0x0100); // Bits Allocated if ( bitsAlloc == GDCM_UNFOUND ) { - gdcmVerboseMacro( "Unfound Bits Allocated"); + gdcmVerboseMacro( "Missing Bits Allocated (0028,0100)"); bitsAlloc = "16"; } @@ -1015,11 +1046,11 @@ std::string Header::GetPixelType() bitsAlloc = "8"; // by old RGB images) } - std::string sign = GetEntryByNumber(0x0028, 0x0103);//"Pixel Representation" + std::string sign = GetEntry(0x0028, 0x0103);//"Pixel Representation" if (sign == GDCM_UNFOUND ) { - gdcmVerboseMacro( "Unfound Pixel Representation"); + gdcmVerboseMacro( "Missing Pixel Representation (0028,0103)"); bitsAlloc = "0"; } else if ( sign == "0" ) @@ -1041,7 +1072,7 @@ std::string Header::GetPixelType() */ size_t Header::GetPixelOffset() { - DocEntry* pxlElement = GetDocEntryByNumber(GrPixel,NumPixel); + DocEntry* pxlElement = GetDocEntry(GrPixel,NumPixel); if ( pxlElement ) { return pxlElement->GetOffset(); @@ -1067,7 +1098,7 @@ size_t Header::GetPixelOffset() */ size_t Header::GetPixelAreaLength() { - DocEntry* pxlElement = GetDocEntryByNumber(GrPixel,NumPixel); + DocEntry* pxlElement = GetDocEntry(GrPixel,NumPixel); if ( pxlElement ) { return pxlElement->GetLength(); @@ -1095,32 +1126,32 @@ bool Header::HasLUT() { // Check the presence of the LUT Descriptors, and LUT Tables // LutDescriptorRed - if ( !GetDocEntryByNumber(0x0028,0x1101) ) + if ( !GetDocEntry(0x0028,0x1101) ) { return false; } // LutDescriptorGreen - if ( !GetDocEntryByNumber(0x0028,0x1102) ) + if ( !GetDocEntry(0x0028,0x1102) ) { return false; } // LutDescriptorBlue - if ( !GetDocEntryByNumber(0x0028,0x1103) ) + if ( !GetDocEntry(0x0028,0x1103) ) { return false; } // Red Palette Color Lookup Table Data - if ( !GetDocEntryByNumber(0x0028,0x1201) ) + if ( !GetDocEntry(0x0028,0x1201) ) { return false; } // Green Palette Color Lookup Table Data - if ( !GetDocEntryByNumber(0x0028,0x1202) ) + if ( !GetDocEntry(0x0028,0x1202) ) { return false; } // Blue Palette Color Lookup Table Data - if ( !GetDocEntryByNumber(0x0028,0x1203) ) + if ( !GetDocEntry(0x0028,0x1203) ) { return false; } @@ -1145,7 +1176,7 @@ int Header::GetLUTNbits() //Just hope Lookup Table Desc-Red = Lookup Table Desc-Red // = Lookup Table Desc-Blue // Consistency already checked in GetLUTLength - std::string lutDescription = GetEntryByNumber(0x0028,0x1101); + std::string lutDescription = GetEntry(0x0028,0x1101); if ( lutDescription == GDCM_UNFOUND ) { return 0; @@ -1162,39 +1193,6 @@ int Header::GetLUTNbits() return lutNbits; } -/** - * \brief Accesses the info from 0002,0010 : Transfert Syntax and TS - * else 1. - * @return The full Transfert Syntax Name (as opposed to Transfert Syntax UID) - */ -std::string Header::GetTransfertSyntaxName() -{ - // use the TS (TS : Transfert Syntax) - std::string transfertSyntax = GetEntryByNumber(0x0002,0x0010); - - if ( transfertSyntax == GDCM_NOTLOADED ) - { - gdcmVerboseMacro( "Transfert Syntax not loaded. " << std::endl - << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE" ); - return "Uncompressed ACR-NEMA"; - } - if ( transfertSyntax == GDCM_UNFOUND ) - { - gdcmVerboseMacro( "Unfound Transfert Syntax (0002,0010)"); - return "Uncompressed ACR-NEMA"; - } - - while ( ! isdigit((unsigned char)transfertSyntax[transfertSyntax.length()-1]) ) - { - transfertSyntax.erase(transfertSyntax.length()-1, 1); - } - // we do it only when we need it - TS* ts = Global::GetTS(); - std::string tsName = ts->GetValue( transfertSyntax ); - - //delete ts; /// \todo Seg Fault when deleted ?! - return tsName; -} //----------------------------------------------------------------------------- // Protected @@ -1206,22 +1204,22 @@ std::string Header::GetTransfertSyntaxName() bool Header::AnonymizeHeader() { // If exist, replace by spaces - SetEntryByNumber (" ",0x0010, 0x2154); // Telephone - SetEntryByNumber (" ",0x0010, 0x1040); // Adress - SetEntryByNumber (" ",0x0010, 0x0020); // Patient ID + SetEntry (" ",0x0010, 0x2154); // Telephone + SetEntry (" ",0x0010, 0x1040); // Adress + SetEntry (" ",0x0010, 0x0020); // Patient ID - DocEntry* patientNameHE = GetDocEntryByNumber (0x0010, 0x0010); + DocEntry* patientNameHE = GetDocEntry (0x0010, 0x0010); if ( patientNameHE ) // we replace it by Study Instance UID (why not) { - std::string studyInstanceUID = GetEntryByNumber (0x0020, 0x000d); + std::string studyInstanceUID = GetEntry (0x0020, 0x000d); if ( studyInstanceUID != GDCM_UNFOUND ) { - ReplaceOrCreateByNumber(studyInstanceUID, 0x0010, 0x0010); + ReplaceOrCreate(studyInstanceUID, 0x0010, 0x0010); } else { - ReplaceOrCreateByNumber("anonymised", 0x0010, 0x0010); + ReplaceOrCreate("anonymised", 0x0010, 0x0010); } } @@ -1292,7 +1290,7 @@ void Header::GetImageOrientationPatient( float iop[6] ) iop[0] = iop[1] = iop[2] = iop[3] = iop[4] = iop[5] = 0.; // 0020 0037 DS REL Image Orientation (Patient) - if ( (strImOriPat = GetEntryByNumber(0x0020,0x0037)) != GDCM_UNFOUND ) + if ( (strImOriPat = GetEntry(0x0020,0x0037)) != GDCM_UNFOUND ) { if( sscanf( strImOriPat.c_str(), "%f\\%f\\%f\\%f\\%f\\%f", &iop[0], &iop[1], &iop[2], &iop[3], &iop[4], &iop[5]) != 6 ) @@ -1302,7 +1300,7 @@ void Header::GetImageOrientationPatient( float iop[6] ) } //For ACR-NEMA // 0020 0035 DS REL Image Orientation (RET) - else if ( (strImOriPat = GetEntryByNumber(0x0020,0x0035)) != GDCM_UNFOUND ) + else if ( (strImOriPat = GetEntry(0x0020,0x0035)) != GDCM_UNFOUND ) { if( sscanf( strImOriPat.c_str(), "%f\\%f\\%f\\%f\\%f\\%f", &iop[0], &iop[1], &iop[2], &iop[3], &iop[4], &iop[5]) != 6 ) @@ -1375,14 +1373,14 @@ void Header::InitializeDefaultHeader() // Special case this is the image (not a string) GrPixel = 0x7fe0; NumPixel = 0x0010; - ReplaceOrCreateByNumber(0, 0, GrPixel, NumPixel); + ReplaceOrCreate(0, 0, GrPixel, NumPixel); // All remaining strings: unsigned int i = 0; DICOM_DEFAULT_VALUE current = defaultvalue[i]; while( current.value ) { - ReplaceOrCreateByNumber(current.value, current.group, current.elem); + ReplaceOrCreate(current.value, current.group, current.elem); current = defaultvalue[++i]; } }