1 /*=========================================================================
4 Module: $RCSfile: gdcmHeader.cxx,v $
6 Date: $Date: 2005/01/06 20:03:28 $
7 Version: $Revision: 1.222 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #include "gdcmHeader.h"
20 #include "gdcmGlobal.h"
22 #include "gdcmDebug.h"
24 #include "gdcmValEntry.h"
25 #include <stdio.h> //sscanf
31 //-----------------------------------------------------------------------------
32 // Constructor / Destructor
35 * @param filename name of the file whose header we want to analyze
37 Header::Header( std::string const &filename ):
40 // for some ACR-NEMA images GrPixel, NumPixel is *not* 7fe0,0010
41 // We may encounter the 'RETired' (0x0028, 0x0200) tag
42 // (Image Location") . This Element contains the number of
43 // the group that contains the pixel data (hence the "Pixel Data"
44 // is found by indirection through the "Image Location").
45 // Inside the group pointed by "Image Location" the searched element
46 // is conventionally the element 0x0010 (when the norm is respected).
47 // When the "Image Location" is absent we default to group 0x7fe0.
48 // Note: this IS the right place for the code
51 const std::string &imgLocation = GetEntryByNumber(0x0028, 0x0200);
52 if ( imgLocation == GDCM_UNFOUND )
59 GrPixel = (uint16_t) atoi( imgLocation.c_str() );
62 // sometimes Image Location value doesn't follow
63 // the supposed processor endianity.
64 // see gdcmData/cr172241.dcm
65 if ( GrPixel == 0xe07f )
70 if ( GrPixel != 0x7fe0 )
72 // This is a kludge for old dirty Philips imager.
80 // Now, we know GrPixel and NumPixel.
81 // Let's create a VirtualDictEntry to allow a further VR modification
82 // and force VR to match with BitsAllocated.
84 DocEntry *entry = GetDocEntryByNumber(GrPixel, NumPixel);
89 // 8 bits allocated is a 'O Bytes' , as well as 24 (old ACR-NEMA RGB)
90 // more than 8 (i.e 12, 16) is a 'O Words'
91 if ( GetBitsAllocated() == 8 || GetBitsAllocated() == 24 )
96 DictEntry* newEntry = NewVirtualDictEntry(
98 PixelVR, "PXL", "Pixel Data");
100 entry->SetDictEntry( newEntry );
105 * \brief Constructor used when we want to generate dicom files from scratch
110 InitializeDefaultHeader();
114 * \brief Canonical destructor.
121 * \brief Performs some consistency checking on various 'File related'
122 * (as opposed to 'DicomDir related') entries
123 * then writes in a file all the (Dicom Elements) included the Pixels
124 * @param fileName file name to write to
125 * @param filetype Type of the File to be written
126 * (ACR-NEMA, ExplicitVR, ImplicitVR)
128 bool Header::Write(std::string fileName, FileType filetype)
130 std::ofstream *fp = new std::ofstream(fileName.c_str(),
131 std::ios::out | std::ios::binary);
134 dbg.Verbose(2, "Failed to open (write) File: " , fileName.c_str());
139 if ( GetEntryByNumber(0x0028,0x0100) == "12")
141 SetEntryByNumber("16", 0x0028,0x0100);
144 /// \todo correct 'Pixel group' Length if necessary
146 int i_lgPix = GetEntryLengthByNumber(GrPixel, NumPixel);
149 // no (GrPixel, NumPixel) element
150 std::string s_lgPix = Util::Format("%d", i_lgPix+12);
151 s_lgPix = Util::DicomString( s_lgPix.c_str() );
152 ReplaceOrCreateByNumber(s_lgPix,GrPixel, 0x0000);
155 // FIXME : should be nice if we could move it to File
156 // (or in future gdcmPixelData class)
158 // Drop Palette Color, if necessary
160 if ( GetEntryByNumber(0x0028,0x0002).c_str()[0] == '3' )
162 // if SamplesPerPixel = 3, sure we don't need any LUT !
163 // Drop 0028|1101, 0028|1102, 0028|1103
164 // Drop 0028|1201, 0028|1202, 0028|1203
166 DocEntry *e = GetDocEntryByNumber(0x0028,0x01101);
169 RemoveEntryNoDestroy(e);
171 e = GetDocEntryByNumber(0x0028,0x1102);
174 RemoveEntryNoDestroy(e);
176 e = GetDocEntryByNumber(0x0028,0x1103);
179 RemoveEntryNoDestroy(e);
181 e = GetDocEntryByNumber(0x0028,0x01201);
184 RemoveEntryNoDestroy(e);
186 e = GetDocEntryByNumber(0x0028,0x1202);
189 RemoveEntryNoDestroy(e);
191 e = GetDocEntryByNumber(0x0028,0x1203);
194 RemoveEntryNoDestroy(e);
197 Document::WriteContent(fp,filetype);
205 //-----------------------------------------------------------------------------
209 //-----------------------------------------------------------------------------
213 * \brief This predicate, based on hopefully reasonable heuristics,
214 * decides whether or not the current Header was properly parsed
215 * and contains the mandatory information for being considered as
216 * a well formed and usable Dicom/Acr File.
217 * @return true when Header is the one of a reasonable Dicom/Acr file,
220 bool Header::IsReadable()
222 if( !Document::IsReadable() )
227 const std::string &res = GetEntryByNumber(0x0028, 0x0005);
228 if ( res != GDCM_UNFOUND && atoi(res.c_str()) > 4 )
230 return false; // Image Dimensions
232 if ( !GetDocEntryByNumber(0x0028, 0x0100) )
234 return false; // "Bits Allocated"
236 if ( !GetDocEntryByNumber(0x0028, 0x0101) )
238 return false; // "Bits Stored"
240 if ( !GetDocEntryByNumber(0x0028, 0x0102) )
242 return false; // "High Bit"
244 if ( !GetDocEntryByNumber(0x0028, 0x0103) )
246 return false; // "Pixel Representation" i.e. 'Sign'
253 * \brief Retrieve the number of columns of image.
254 * @return The encountered size when found, 0 by default.
255 * 0 means the file is NOT USABLE. The caller will have to check
257 int Header::GetXSize()
259 const std::string &strSize = GetEntryByNumber(0x0028,0x0011);
260 if ( strSize == GDCM_UNFOUND )
265 return atoi( strSize.c_str() );
269 * \brief Retrieve the number of lines of image.
270 * \warning The defaulted value is 1 as opposed to Header::GetXSize()
271 * @return The encountered size when found, 1 by default
272 * (The ACR-NEMA file contains a Signal, not an Image).
274 int Header::GetYSize()
276 const std::string &strSize = GetEntryByNumber(0x0028,0x0010);
277 if ( strSize != GDCM_UNFOUND )
279 return atoi( strSize.c_str() );
286 // The Rows (0028,0010) entry was optional for ACR/NEMA. It might
287 // hence be a signal (1D image). So we default to 1:
292 * \brief Retrieve the number of planes of volume or the number
293 * of frames of a multiframe.
294 * \warning When present we consider the "Number of Frames" as the third
295 * dimension. When absent we consider the third dimension as
296 * being the ACR-NEMA "Planes" tag content.
297 * @return The encountered size when found, 1 by default (single image).
299 int Header::GetZSize()
301 // Both DicomV3 and ACR/Nema consider the "Number of Frames"
302 // as the third dimension.
303 const std::string &strSize = GetEntryByNumber(0x0028,0x0008);
304 if ( strSize != GDCM_UNFOUND )
306 return atoi( strSize.c_str() );
309 // We then consider the "Planes" entry as the third dimension
310 const std::string &strSize2 = GetEntryByNumber(0x0028,0x0012);
311 if ( strSize2 != GDCM_UNFOUND )
313 return atoi( strSize2.c_str() );
320 * \brief gets the info from 0028,0030 : Pixel Spacing
322 * @return X dimension of a pixel
324 float Header::GetXSpacing()
326 float xspacing, yspacing;
327 const std::string &strSpacing = GetEntryByNumber(0x0028,0x0030);
329 if ( strSpacing == GDCM_UNFOUND )
331 dbg.Verbose(0, "Header::GetXSpacing: unfound Pixel Spacing (0028,0030)");
336 if( ( nbValues = sscanf( strSpacing.c_str(),
337 "%f\\%f", &yspacing, &xspacing)) != 2 )
339 // if single value is found, xspacing is defaulted to yspacing
345 if ( xspacing == 0.0 )
352 // to avoid troubles with David Clunie's-like images
353 if ( xspacing == 0. && yspacing == 0.)
358 dbg.Verbose(0, "Header::GetXSpacing: gdcmData/CT-MONO2-8-abdo.dcm problem");
359 // seems to be a bug in the header ...
360 nbValues = sscanf( strSpacing.c_str(), "%f\\0\\%f", &yspacing, &xspacing);
361 assert( nbValues == 2 );
368 * \brief gets the info from 0028,0030 : Pixel Spacing
370 * @return Y dimension of a pixel
372 float Header::GetYSpacing()
375 std::string strSpacing = GetEntryByNumber(0x0028,0x0030);
377 if ( strSpacing == GDCM_UNFOUND )
379 dbg.Verbose(0, "Header::GetYSpacing: unfound Pixel Spacing (0028,0030)");
383 // if sscanf cannot read any float value, it won't affect yspacing
384 sscanf( strSpacing.c_str(), "%f", &yspacing);
386 if ( yspacing == 0.0 )
393 * \brief gets the info from 0018,0088 : Space Between Slices
394 * else from 0018,0050 : Slice Thickness
396 * @return Z dimension of a voxel-to be
398 float Header::GetZSpacing()
400 // Spacing Between Slices : distance entre le milieu de chaque coupe
401 // Les coupes peuvent etre :
402 // jointives (Spacing between Slices = Slice Thickness)
403 // chevauchantes (Spacing between Slices < Slice Thickness)
404 // disjointes (Spacing between Slices > Slice Thickness)
405 // Slice Thickness : epaisseur de tissus sur laquelle est acquis le signal
406 // ca interesse le physicien de l'IRM, pas le visualisateur de volumes ...
407 // Si le Spacing Between Slices est absent,
408 // on suppose que les coupes sont jointives
410 const std::string &strSpacingBSlices = GetEntryByNumber(0x0018,0x0088);
412 if ( strSpacingBSlices == GDCM_UNFOUND )
414 dbg.Verbose(0, "Header::GetZSpacing: unfound StrSpacingBSlices");
415 const std::string &strSliceThickness = GetEntryByNumber(0x0018,0x0050);
416 if ( strSliceThickness == GDCM_UNFOUND )
422 // if no 'Spacing Between Slices' is found,
423 // we assume slices join together
424 // (no overlapping, no interslice gap)
425 // if they don't, we're fucked up
426 return (float)atof( strSliceThickness.c_str() );
430 return (float)atof( strSpacingBSlices.c_str() );
434 *\brief gets the info from 0028,1052 : Rescale Intercept
435 * @return Rescale Intercept
437 float Header::GetRescaleIntercept()
440 /// 0028 1052 DS IMG Rescale Intercept
441 const std::string &strRescInter = GetEntryByNumber(0x0028,0x1052);
442 if ( strRescInter != GDCM_UNFOUND )
444 if( sscanf( strRescInter.c_str(), "%f", &resInter) != 1 )
446 // bug in the element 0x0028,0x1052
447 dbg.Verbose(0, "Header::GetRescaleIntercept: Rescale Slope "
456 *\brief gets the info from 0028,1053 : Rescale Slope
457 * @return Rescale Slope
459 float Header::GetRescaleSlope()
462 //0028 1053 DS IMG Rescale Slope
463 std::string strRescSlope = GetEntryByNumber(0x0028,0x1053);
464 if ( strRescSlope != GDCM_UNFOUND )
466 if( sscanf( strRescSlope.c_str(), "%f", &resSlope) != 1)
468 // bug in the element 0x0028,0x1053
469 dbg.Verbose(0, "Header::GetRescaleSlope: Rescale Slope is empty");
477 * \brief This function is intended to user who doesn't want
478 * to have to manage a LUT and expects to get an RBG Pixel image
479 * (or a monochrome one ...)
480 * \warning to be used with GetImagePixels()
481 * @return 1 if Gray level, 3 if Color (RGB, YBR or PALETTE COLOR)
483 int Header::GetNumberOfScalarComponents()
485 if ( GetSamplesPerPixel() == 3 )
490 // 0028 0100 US IMG Bits Allocated
491 // (in order no to be messed up by old RGB images)
492 if ( GetEntryByNumber(0x0028,0x0100) == "24" )
497 std::string strPhotometricInterpretation = GetEntryByNumber(0x0028,0x0004);
499 if ( ( strPhotometricInterpretation == "PALETTE COLOR ") )
501 if ( HasLUT() )// PALETTE COLOR is NOT enough
511 // beware of trailing space at end of string
512 // DICOM tags are never of odd length
513 if ( strPhotometricInterpretation == GDCM_UNFOUND ||
514 Util::DicomStringEqual(strPhotometricInterpretation, "MONOCHROME1") ||
515 Util::DicomStringEqual(strPhotometricInterpretation, "MONOCHROME2") )
521 // we assume that *all* kinds of YBR are dealt with
527 * \brief This function is intended to user that DOESN'T want
528 * to get RGB pixels image when it's stored as a PALETTE COLOR image
529 * - the (vtk) user is supposed to know how deal with LUTs -
530 * \warning to be used with GetImagePixelsRaw()
531 * @return 1 if Gray level, 3 if Color (RGB or YBR - NOT 'PALETTE COLOR' -)
533 int Header::GetNumberOfScalarComponentsRaw()
535 // 0028 0100 US IMG Bits Allocated
536 // (in order no to be messed up by old RGB images)
537 if ( Header::GetEntryByNumber(0x0028,0x0100) == "24" )
542 // we assume that *all* kinds of YBR are dealt with
543 return GetSamplesPerPixel();
547 // -------------- Remember ! ----------------------------------
549 // Image Position Patient (0020,0032):
550 // If not found (ACR_NEMA) we try Image Position (0020,0030)
551 // If not found (ACR-NEMA), we consider Slice Location (0020,1041)
552 // or Location (0020,0050)
553 // as the Z coordinate,
554 // 0. for all the coordinates if nothing is found
556 // \todo find a way to inform the caller nothing was found
557 // \todo How to tell the caller a wrong number of values was found?
559 // ---------------------------------------------------------------
563 * \brief gets the info from 0020,0032 : Image Position Patient
564 * else from 0020,0030 : Image Position (RET)
566 * @return up-left image corner X position
568 float Header::GetXOrigin()
570 float xImPos, yImPos, zImPos;
571 std::string strImPos = GetEntryByNumber(0x0020,0x0032);
573 if ( strImPos == GDCM_UNFOUND )
575 dbg.Verbose(0, "Header::GetXImagePosition: unfound Image "
576 "Position Patient (0020,0032)");
577 strImPos = GetEntryByNumber(0x0020,0x0030); // For ACR-NEMA images
578 if ( strImPos == GDCM_UNFOUND )
580 dbg.Verbose(0, "Header::GetXImagePosition: unfound Image "
581 "Position (RET) (0020,0030)");
582 /// \todo How to tell the caller nothing was found ?
587 if( sscanf( strImPos.c_str(), "%f\\%f\\%f", &xImPos, &yImPos, &zImPos) != 3 )
596 * \brief gets the info from 0020,0032 : Image Position Patient
597 * else from 0020,0030 : Image Position (RET)
599 * @return up-left image corner Y position
601 float Header::GetYOrigin()
603 float xImPos, yImPos, zImPos;
604 std::string strImPos = GetEntryByNumber(0x0020,0x0032);
606 if ( strImPos == GDCM_UNFOUND)
608 dbg.Verbose(0, "Header::GetYImagePosition: unfound Image "
609 "Position Patient (0020,0032)");
610 strImPos = GetEntryByNumber(0x0020,0x0030); // For ACR-NEMA images
611 if ( strImPos == GDCM_UNFOUND )
613 dbg.Verbose(0, "Header::GetYImagePosition: unfound Image "
614 "Position (RET) (0020,0030)");
615 /// \todo How to tell the caller nothing was found ?
620 if( sscanf( strImPos.c_str(), "%f\\%f\\%f", &xImPos, &yImPos, &zImPos) != 3 )
629 * \brief gets the info from 0020,0032 : Image Position Patient
630 * else from 0020,0030 : Image Position (RET)
631 * else from 0020,1041 : Slice Location
632 * else from 0020,0050 : Location
634 * @return up-left image corner Z position
636 float Header::GetZOrigin()
638 float xImPos, yImPos, zImPos;
639 std::string strImPos = GetEntryByNumber(0x0020,0x0032);
641 if ( strImPos != GDCM_UNFOUND )
643 if( sscanf( strImPos.c_str(), "%f\\%f\\%f", &xImPos, &yImPos, &zImPos) != 3)
645 dbg.Verbose(0, "Header::GetZImagePosition: wrong Image "
646 "Position Patient (0020,0032)");
647 return 0.; // bug in the element 0x0020,0x0032
655 strImPos = GetEntryByNumber(0x0020,0x0030); // For ACR-NEMA images
656 if ( strImPos != GDCM_UNFOUND )
658 if( sscanf( strImPos.c_str(),
659 "%f\\%f\\%f", &xImPos, &yImPos, &zImPos ) != 3 )
661 dbg.Verbose(0, "Header::GetZImagePosition: wrong Image Position (RET) (0020,0030)");
662 return 0.; // bug in the element 0x0020,0x0032
670 std::string strSliceLocation = GetEntryByNumber(0x0020,0x1041); // for *very* old ACR-NEMA images
671 if ( strSliceLocation != GDCM_UNFOUND )
673 if( sscanf( strSliceLocation.c_str(), "%f", &zImPos) != 1)
675 dbg.Verbose(0, "Header::GetZImagePosition: wrong Slice Location (0020,1041)");
676 return 0.; // bug in the element 0x0020,0x1041
683 dbg.Verbose(0, "Header::GetZImagePosition: unfound Slice Location (0020,1041)");
685 std::string strLocation = GetEntryByNumber(0x0020,0x0050);
686 if ( strLocation != GDCM_UNFOUND )
688 if( sscanf( strLocation.c_str(), "%f", &zImPos) != 1)
690 dbg.Verbose(0, "Header::GetZImagePosition: wrong Location (0020,0050)");
691 return 0.; // bug in the element 0x0020,0x0050
698 dbg.Verbose(0, "Header::GetYImagePosition: unfound Location (0020,0050)");
700 return 0.; // Hopeless
704 * \brief gets the info from 0020,0013 : Image Number else 0.
705 * @return image number
707 int Header::GetImageNumber()
709 // The function i atoi() takes the address of an area of memory as
710 // parameter and converts the string stored at that location to an integer
711 // using the external decimal to internal binary conversion rules. This may
712 // be preferable to sscanf() since atoi() is a much smaller, simpler and
713 // faster function. sscanf() can do all possible conversions whereas
714 // atoi() can only do single decimal integer conversions.
715 //0020 0013 IS REL Image Number
716 std::string strImNumber = GetEntryByNumber(0x0020,0x0013);
717 if ( strImNumber != GDCM_UNFOUND )
719 return atoi( strImNumber.c_str() );
725 * \brief gets the info from 0008,0060 : Modality
726 * @return Modality Type
728 ModalityType Header::GetModality()
730 // 0008 0060 CS ID Modality
731 std::string strModality = GetEntryByNumber(0x0008,0x0060);
732 if ( strModality != GDCM_UNFOUND )
734 if ( strModality.find("AU") < strModality.length()) return AU;
735 else if ( strModality.find("AS") < strModality.length()) return AS;
736 else if ( strModality.find("BI") < strModality.length()) return BI;
737 else if ( strModality.find("CF") < strModality.length()) return CF;
738 else if ( strModality.find("CP") < strModality.length()) return CP;
739 else if ( strModality.find("CR") < strModality.length()) return CR;
740 else if ( strModality.find("CT") < strModality.length()) return CT;
741 else if ( strModality.find("CS") < strModality.length()) return CS;
742 else if ( strModality.find("DD") < strModality.length()) return DD;
743 else if ( strModality.find("DF") < strModality.length()) return DF;
744 else if ( strModality.find("DG") < strModality.length()) return DG;
745 else if ( strModality.find("DM") < strModality.length()) return DM;
746 else if ( strModality.find("DS") < strModality.length()) return DS;
747 else if ( strModality.find("DX") < strModality.length()) return DX;
748 else if ( strModality.find("ECG") < strModality.length()) return ECG;
749 else if ( strModality.find("EPS") < strModality.length()) return EPS;
750 else if ( strModality.find("FA") < strModality.length()) return FA;
751 else if ( strModality.find("FS") < strModality.length()) return FS;
752 else if ( strModality.find("HC") < strModality.length()) return HC;
753 else if ( strModality.find("HD") < strModality.length()) return HD;
754 else if ( strModality.find("LP") < strModality.length()) return LP;
755 else if ( strModality.find("LS") < strModality.length()) return LS;
756 else if ( strModality.find("MA") < strModality.length()) return MA;
757 else if ( strModality.find("MR") < strModality.length()) return MR;
758 else if ( strModality.find("NM") < strModality.length()) return NM;
759 else if ( strModality.find("OT") < strModality.length()) return OT;
760 else if ( strModality.find("PT") < strModality.length()) return PT;
761 else if ( strModality.find("RF") < strModality.length()) return RF;
762 else if ( strModality.find("RG") < strModality.length()) return RG;
763 else if ( strModality.find("RTDOSE") < strModality.length()) return RTDOSE;
764 else if ( strModality.find("RTIMAGE") < strModality.length()) return RTIMAGE;
765 else if ( strModality.find("RTPLAN") < strModality.length()) return RTPLAN;
766 else if ( strModality.find("RTSTRUCT") < strModality.length()) return RTSTRUCT;
767 else if ( strModality.find("SM") < strModality.length()) return SM;
768 else if ( strModality.find("ST") < strModality.length()) return ST;
769 else if ( strModality.find("TG") < strModality.length()) return TG;
770 else if ( strModality.find("US") < strModality.length()) return US;
771 else if ( strModality.find("VF") < strModality.length()) return VF;
772 else if ( strModality.find("XA") < strModality.length()) return XA;
773 else if ( strModality.find("XC") < strModality.length()) return XC;
777 /// \todo throw error return value ???
778 /// specified <> unknow in our database
787 * \brief Retrieve the number of Bits Stored (actually used)
788 * (as opposite to number of Bits Allocated)
789 * @return The encountered number of Bits Stored, 0 by default.
790 * 0 means the file is NOT USABLE. The caller has to check it !
792 int Header::GetBitsStored()
794 std::string strSize = GetEntryByNumber( 0x0028, 0x0101 );
795 if ( strSize == GDCM_UNFOUND )
797 dbg.Verbose(0, "Header::GetBitsStored: this is supposed to "
799 return 0; // It's supposed to be mandatory
800 // the caller will have to check
802 return atoi( strSize.c_str() );
806 * \brief Retrieve the high bit position.
807 * \warning The method defaults to 0 when information is absent.
808 * The responsability of checking this value is left to the caller.
809 * @return The high bit positin when present. 0 when absent.
811 int Header::GetHighBitPosition()
813 std::string strSize = GetEntryByNumber( 0x0028, 0x0102 );
814 if ( strSize == GDCM_UNFOUND )
816 dbg.Verbose(0, "Header::GetHighBitPosition: this is supposed "
820 return atoi( strSize.c_str() );
824 * \brief Check wether the pixels are signed or UNsigned data.
825 * \warning The method defaults to false (UNsigned) when information is absent.
826 * The responsability of checking this value is left to the caller.
827 * @return True when signed, false when UNsigned
829 bool Header::IsSignedPixelData()
831 std::string strSize = GetEntryByNumber( 0x0028, 0x0103 );
832 if ( strSize == GDCM_UNFOUND )
834 dbg.Verbose(0, "Header::IsSignedPixelData: this is supposed "
838 int sign = atoi( strSize.c_str() );
847 * \brief Retrieve the number of Bits Allocated
848 * (8, 12 -compacted ACR-NEMA files, 16, ...)
849 * @return The encountered number of Bits Allocated, 0 by default.
850 * 0 means the file is NOT USABLE. The caller has to check it !
852 int Header::GetBitsAllocated()
854 std::string strSize = GetEntryByNumber(0x0028,0x0100);
855 if ( strSize == GDCM_UNFOUND )
857 dbg.Verbose(0, "Header::GetBitsStored: this is supposed to "
859 return 0; // It's supposed to be mandatory
860 // the caller will have to check
862 return atoi( strSize.c_str() );
866 * \brief Retrieve the number of Samples Per Pixel
867 * (1 : gray level, 3 : RGB -1 or 3 Planes-)
868 * @return The encountered number of Samples Per Pixel, 1 by default.
869 * (Gray level Pixels)
871 int Header::GetSamplesPerPixel()
873 const std::string& strSize = GetEntryByNumber(0x0028,0x0002);
874 if ( strSize == GDCM_UNFOUND )
876 dbg.Verbose(0, "Header::GetBitsStored: this is supposed to "
878 return 1; // Well, it's supposed to be mandatory ...
879 // but sometimes it's missing : *we* assume Gray pixels
881 return atoi( strSize.c_str() );
885 * \brief Check wether this a monochrome picture or not by accessing
886 * the "Photometric Interpretation" tag ( 0x0028, 0x0004 ).
887 * @return true when "MONOCHROME1" or "MONOCHROME2". False otherwise.
889 bool Header::IsMonochrome()
891 const std::string& PhotometricInterp = GetEntryByNumber( 0x0028, 0x0004 );
892 if ( Util::DicomStringEqual(PhotometricInterp, "MONOCHROME1")
893 || Util::DicomStringEqual(PhotometricInterp, "MONOCHROME2") )
897 if ( PhotometricInterp == GDCM_UNFOUND )
899 dbg.Verbose(0, "Header::IsMonochrome: absent Photometric "
906 * \brief Check wether this a "PALETTE COLOR" picture or not by accessing
907 * the "Photometric Interpretation" tag ( 0x0028, 0x0004 ).
908 * @return true when "PALETTE COLOR". False otherwise.
910 bool Header::IsPaletteColor()
912 std::string PhotometricInterp = GetEntryByNumber( 0x0028, 0x0004 );
913 if ( PhotometricInterp == "PALETTE COLOR " )
917 if ( PhotometricInterp == GDCM_UNFOUND )
919 dbg.Verbose(0, "Header::IsPaletteColor: absent Photometric "
926 * \brief Check wether this a "YBR_FULL" color picture or not by accessing
927 * the "Photometric Interpretation" tag ( 0x0028, 0x0004 ).
928 * @return true when "YBR_FULL". False otherwise.
930 bool Header::IsYBRFull()
932 std::string PhotometricInterp = GetEntryByNumber( 0x0028, 0x0004 );
933 if ( PhotometricInterp == "YBR_FULL" )
937 if ( PhotometricInterp == GDCM_UNFOUND )
939 dbg.Verbose(0, "Header::IsYBRFull: absent Photometric "
946 * \brief Retrieve the Planar Configuration for RGB images
947 * (0 : RGB Pixels , 1 : R Plane + G Plane + B Plane)
948 * @return The encountered Planar Configuration, 0 by default.
950 int Header::GetPlanarConfiguration()
952 std::string strSize = GetEntryByNumber(0x0028,0x0006);
953 if ( strSize == GDCM_UNFOUND )
957 return atoi( strSize.c_str() );
961 * \brief Return the size (in bytes) of a single pixel of data.
962 * @return The size in bytes of a single pixel of data; 0 by default
963 * 0 means the file is NOT USABLE; the caller will have to check
965 int Header::GetPixelSize()
967 // 0028 0100 US IMG Bits Allocated
968 // (in order no to be messed up by old RGB images)
969 // if (Header::GetEntryByNumber(0x0028,0x0100) == "24")
972 std::string pixelType = GetPixelType();
973 if ( pixelType == "8U" || pixelType == "8S" )
977 if ( pixelType == "16U" || pixelType == "16S")
981 if ( pixelType == "32U" || pixelType == "32S")
985 if ( pixelType == "FD" )
989 dbg.Verbose(0, "Header::GetPixelSize: Unknown pixel type");
994 * \brief Build the Pixel Type of the image.
995 * Possible values are:
996 * - 8U unsigned 8 bit,
998 * - 16U unsigned 16 bit,
999 * - 16S signed 16 bit,
1000 * - 32U unsigned 32 bit,
1001 * - 32S signed 32 bit,
1002 * - FD floating double 64 bits (Not kosher DICOM, but so usefull!)
1003 * \warning 12 bit images appear as 16 bit.
1004 * 24 bit images appear as 8 bit
1005 * @return 0S if nothing found. NOT USABLE file. The caller has to check
1007 std::string Header::GetPixelType()
1009 std::string bitsAlloc = GetEntryByNumber(0x0028, 0x0100); // Bits Allocated
1010 if ( bitsAlloc == GDCM_UNFOUND )
1012 dbg.Verbose(0, "Header::GetPixelType: unfound Bits Allocated");
1016 if ( bitsAlloc == "64" )
1020 else if ( bitsAlloc == "12" )
1022 // It will be unpacked
1025 else if ( bitsAlloc == "24" )
1027 // (in order no to be messed up
1028 bitsAlloc = "8"; // by old RGB images)
1031 std::string sign = GetEntryByNumber(0x0028, 0x0103);//"Pixel Representation"
1033 if (sign == GDCM_UNFOUND )
1035 dbg.Verbose(0, "Header::GetPixelType: unfound Pixel Representation");
1038 else if ( sign == "0" )
1046 return bitsAlloc + sign;
1051 * \brief Recover the offset (from the beginning of the file)
1052 * of *image* pixels (not *icone image* pixels, if any !)
1053 * @return Pixel Offset
1055 size_t Header::GetPixelOffset()
1057 DocEntry* pxlElement = GetDocEntryByNumber(GrPixel,NumPixel);
1060 return pxlElement->GetOffset();
1065 std::cout << "Big trouble : Pixel Element ("
1066 << std::hex << GrPixel<<","<< NumPixel<< ") NOT found"
1073 /// \todo TODO : unify those two (previous one and next one)
1075 * \brief Recover the pixel area length (in Bytes)
1076 * @return Pixel Element Length, as stored in the header
1077 * (NOT the memory space necessary to hold the Pixels
1078 * -in case of embeded compressed image-)
1079 * 0 : NOT USABLE file. The caller has to check.
1081 size_t Header::GetPixelAreaLength()
1083 DocEntry* pxlElement = GetDocEntryByNumber(GrPixel,NumPixel);
1086 return pxlElement->GetLength();
1091 std::cout << "Big trouble : Pixel Element ("
1092 << std::hex << GrPixel<<","<< NumPixel<< ") NOT found"
1100 * \brief tells us if LUT are used
1101 * \warning Right now, 'Segmented xxx Palette Color Lookup Table Data'
1102 * are NOT considered as LUT, since nobody knows
1103 * how to deal with them
1104 * Please warn me if you know sbdy that *does* know ... jprx
1105 * @return true if LUT Descriptors and LUT Tables were found
1107 bool Header::HasLUT()
1109 // Check the presence of the LUT Descriptors, and LUT Tables
1111 if ( !GetDocEntryByNumber(0x0028,0x1101) )
1115 // LutDescriptorGreen
1116 if ( !GetDocEntryByNumber(0x0028,0x1102) )
1120 // LutDescriptorBlue
1121 if ( !GetDocEntryByNumber(0x0028,0x1103) )
1125 // Red Palette Color Lookup Table Data
1126 if ( !GetDocEntryByNumber(0x0028,0x1201) )
1130 // Green Palette Color Lookup Table Data
1131 if ( !GetDocEntryByNumber(0x0028,0x1202) )
1135 // Blue Palette Color Lookup Table Data
1136 if ( !GetDocEntryByNumber(0x0028,0x1203) )
1141 // FIXME : (0x0028,0x3006) : LUT Data (CTX dependent)
1142 // NOT taken into account, but we don't know how to use it ...
1147 * \brief gets the info from 0028,1101 : Lookup Table Desc-Red
1149 * @return Lookup Table number of Bits , 0 by default
1150 * when (0028,0004),Photometric Interpretation = [PALETTE COLOR ]
1151 * @ return bit number of each LUT item
1153 int Header::GetLUTNbits()
1155 std::vector<std::string> tokens;
1158 //Just hope Lookup Table Desc-Red = Lookup Table Desc-Red
1159 // = Lookup Table Desc-Blue
1160 // Consistency already checked in GetLUTLength
1161 std::string lutDescription = GetEntryByNumber(0x0028,0x1101);
1162 if ( lutDescription == GDCM_UNFOUND )
1167 tokens.clear(); // clean any previous value
1168 Util::Tokenize ( lutDescription, tokens, "\\" );
1169 //LutLength=atoi(tokens[0].c_str());
1170 //LutDepth=atoi(tokens[1].c_str());
1172 lutNbits = atoi( tokens[2].c_str() );
1179 * \brief Accesses the info from 0002,0010 : Transfert Syntax and TS
1181 * @return The full Transfert Syntax Name (as opposed to Transfert Syntax UID)
1183 std::string Header::GetTransfertSyntaxName()
1185 // use the TS (TS : Transfert Syntax)
1186 std::string transfertSyntax = GetEntryByNumber(0x0002,0x0010);
1188 if ( transfertSyntax == GDCM_NOTLOADED )
1190 std::cout << "Transfert Syntax not loaded. " << std::endl
1191 << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE"
1193 return "Uncompressed ACR-NEMA";
1195 if ( transfertSyntax == GDCM_UNFOUND )
1197 dbg.Verbose(0, "Header::GetTransfertSyntaxName:"
1198 " unfound Transfert Syntax (0002,0010)");
1199 return "Uncompressed ACR-NEMA";
1202 while ( ! isdigit((unsigned char)transfertSyntax[transfertSyntax.length()-1]) )
1204 transfertSyntax.erase(transfertSyntax.length()-1, 1);
1206 // we do it only when we need it
1207 TS* ts = Global::GetTS();
1208 std::string tsName = ts->GetValue( transfertSyntax );
1210 //delete ts; /// \todo Seg Fault when deleted ?!
1214 //-----------------------------------------------------------------------------
1218 * \brief anonymize a Header (removes Patient's personal info)
1219 * (read the code to see which ones ...)
1221 bool Header::AnonymizeHeader()
1223 // If exist, replace by spaces
1224 SetEntryByNumber (" ",0x0010, 0x2154); // Telephone
1225 SetEntryByNumber (" ",0x0010, 0x1040); // Adress
1226 SetEntryByNumber (" ",0x0010, 0x0020); // Patient ID
1228 DocEntry* patientNameHE = GetDocEntryByNumber (0x0010, 0x0010);
1230 if ( patientNameHE ) // we replace it by Study Instance UID (why not)
1232 std::string studyInstanceUID = GetEntryByNumber (0x0020, 0x000d);
1233 if ( studyInstanceUID != GDCM_UNFOUND )
1235 ReplaceOrCreateByNumber(studyInstanceUID, 0x0010, 0x0010);
1239 ReplaceOrCreateByNumber("anonymised", 0x0010, 0x0010);
1244 // (if any) remove or replace all the stuff that contains a Date
1246 //0008 0012 DA ID Instance Creation Date
1247 //0008 0020 DA ID Study Date
1248 //0008 0021 DA ID Series Date
1249 //0008 0022 DA ID Acquisition Date
1250 //0008 0023 DA ID Content Date
1251 //0008 0024 DA ID Overlay Date
1252 //0008 0025 DA ID Curve Date
1253 //0008 002a DT ID Acquisition Datetime
1254 //0018 9074 DT ACQ Frame Acquisition Datetime
1255 //0018 9151 DT ACQ Frame Reference Datetime
1256 //0018 a002 DT ACQ Contribution Date Time
1257 //0020 3403 SH REL Modified Image Date (RET)
1258 //0032 0032 DA SDY Study Verified Date
1259 //0032 0034 DA SDY Study Read Date
1260 //0032 1000 DA SDY Scheduled Study Start Date
1261 //0032 1010 DA SDY Scheduled Study Stop Date
1262 //0032 1040 DA SDY Study Arrival Date
1263 //0032 1050 DA SDY Study Completion Date
1264 //0038 001a DA VIS Scheduled Admission Date
1265 //0038 001c DA VIS Scheduled Discharge Date
1266 //0038 0020 DA VIS Admitting Date
1267 //0038 0030 DA VIS Discharge Date
1268 //0040 0002 DA PRC Scheduled Procedure Step Start Date
1269 //0040 0004 DA PRC Scheduled Procedure Step End Date
1270 //0040 0244 DA PRC Performed Procedure Step Start Date
1271 //0040 0250 DA PRC Performed Procedure Step End Date
1272 //0040 2004 DA PRC Issue Date of Imaging Service Request
1273 //0040 4005 DT PRC Scheduled Procedure Step Start Date and Time
1274 //0040 4011 DT PRC Expected Completion Date and Time
1275 //0040 a030 DT PRC Verification Date Time
1276 //0040 a032 DT PRC Observation Date Time
1277 //0040 a120 DT PRC DateTime
1278 //0040 a121 DA PRC Date
1279 //0040 a13a DT PRC Referenced Datetime
1280 //0070 0082 DA ??? Presentation Creation Date
1281 //0100 0420 DT ??? SOP Autorization Date and Time
1282 //0400 0105 DT ??? Digital Signature DateTime
1283 //2100 0040 DA PJ Creation Date
1284 //3006 0008 DA SSET Structure Set Date
1285 //3008 0024 DA ??? Treatment Control Point Date
1286 //3008 0054 DA ??? First Treatment Date
1287 //3008 0056 DA ??? Most Recent Treatment Date
1288 //3008 0162 DA ??? Safe Position Exit Date
1289 //3008 0166 DA ??? Safe Position Return Date
1290 //3008 0250 DA ??? Treatment Date
1291 //300a 0006 DA RT RT Plan Date
1292 //300a 022c DA RT Air Kerma Rate Reference Date
1293 //300e 0004 DA RT Review Date
1299 * \brief gets the info from 0020,0037 : Image Orientation Patient
1300 * @param iop adress of the (6)float aray to receive values
1301 * @return cosines of image orientation patient
1303 void Header::GetImageOrientationPatient( float iop[6] )
1305 std::string strImOriPat;
1306 //iop is supposed to be float[6]
1307 iop[0] = iop[1] = iop[2] = iop[3] = iop[4] = iop[5] = 0.;
1309 // 0020 0037 DS REL Image Orientation (Patient)
1310 if ( (strImOriPat = GetEntryByNumber(0x0020,0x0037)) != GDCM_UNFOUND )
1312 if( sscanf( strImOriPat.c_str(), "%f\\%f\\%f\\%f\\%f\\%f",
1313 &iop[0], &iop[1], &iop[2], &iop[3], &iop[4], &iop[5]) != 6 )
1315 dbg.Verbose(0, "Header::GetImageOrientationPatient: "
1316 "wrong Image Orientation Patient (0020,0037)");
1320 // 0020 0035 DS REL Image Orientation (RET)
1321 else if ( (strImOriPat = GetEntryByNumber(0x0020,0x0035)) != GDCM_UNFOUND )
1323 if( sscanf( strImOriPat.c_str(), "%f\\%f\\%f\\%f\\%f\\%f",
1324 &iop[0], &iop[1], &iop[2], &iop[3], &iop[4], &iop[5]) != 6 )
1326 dbg.Verbose(0, "Header::GetImageOrientationPatient: "
1327 "wrong Image Orientation Patient (0020,0035)");
1333 * \brief Initialize a default DICOM header that should contain all the
1334 * field require by other reader. DICOM standard does not
1335 * explicitely defines those fields, heuristic has been choosen.
1336 * This is not perfect as we are writting a CT image...
1338 void Header::InitializeDefaultHeader()
1345 } DICOM_DEFAULT_VALUE;
1347 std::string date = Util::GetCurrentDate();
1348 std::string time = Util::GetCurrentTime();
1349 std::string uid = Util::CreateUniqueUID();
1350 std::string uidMedia = uid;
1351 std::string uidClass = uid + ".1";
1352 std::string uidInst = uid + ".10";
1353 std::string uidStudy = uid + ".100";
1354 std::string uidSerie = uid + ".1000";
1356 static DICOM_DEFAULT_VALUE defaultvalue[] = {
1357 { "146 ", 0x0002, 0x0000}, // Meta Element Group Length // FIXME: how to recompute ?
1358 { "1.2.840.10008.5.1.4.1.1.2", 0x0002, 0x0002}, // Media Storage SOP Class UID (CT Image Storage)
1359 { uidClass.c_str(), 0x0002, 0x0003}, // Media Storage SOP Instance UID
1360 { uidClass.c_str(), 0x0002, 0x0012}, // META Implementation Class UID
1361 { "GDCM", 0x0002, 0x0016}, // Source Application Entity Title
1363 { date.c_str(), 0x0008, 0x0012}, // Instance Creation Date
1364 { time.c_str(), 0x0008, 0x0013}, // Instance Creation Time
1365 { "1.2.840.10008.5.1.4.1.1.2", 0x0008, 0x0016}, // SOP Class UID
1366 { uidInst.c_str(), 0x0008, 0x0018}, // SOP Instance UID
1367 { "CT", 0x0008, 0x0060}, // Modality
1368 { "GDCM", 0x0008, 0x0070}, // Manufacturer
1369 { "GDCM", 0x0008, 0x0080}, // Institution Name
1370 { "http://www-creatis.insa-lyon.fr/Public/Gdcm", 0x0008, 0x0081}, // Institution Address
1372 { "GDCM", 0x0010, 0x0010}, // Patient's Name
1373 { "GDCMID", 0x0010, 0x0020}, // Patient ID
1375 { uidStudy.c_str(), 0x0020, 0x000d}, // Study Instance UID
1376 { uidSerie.c_str(), 0x0020, 0x000e}, // Series Instance UID
1377 { "1", 0x0020, 0x0010}, // StudyID
1378 { "1", 0x0020, 0x0011}, // SeriesNumber
1380 { "1", 0x0028, 0x0002}, // Samples per pixel 1 or 3
1381 { "MONOCHROME1", 0x0028, 0x0004}, // photochromatic interpretation
1382 { "0", 0x0028, 0x0010}, // nbRows
1383 { "0", 0x0028, 0x0011}, // nbCols
1384 { "8", 0x0028, 0x0100}, // BitsAllocated 8 or 12 or 16
1385 { "8", 0x0028, 0x0101}, // BitsStored <= BitsAllocated
1386 { "7", 0x0028, 0x0102}, // HighBit <= BitsAllocated - 1
1387 { "0", 0x0028, 0x0103}, // Pixel Representation 0(unsigned) or 1(signed)
1392 // Special case this is the image (not a string)
1395 ReplaceOrCreateByNumber(0, 0, GrPixel, NumPixel);
1397 // All remaining strings:
1399 DICOM_DEFAULT_VALUE current = defaultvalue[i];
1400 while( current.value )
1402 ReplaceOrCreateByNumber(current.value, current.group, current.elem);
1403 current = defaultvalue[++i];
1408 //-----------------------------------------------------------------------------
1411 //-----------------------------------------------------------------------------
1413 } // end namespace gdcm