Program: gdcm
Module: $RCSfile: gdcmDocEntry.h,v $
Language: C++
- Date: $Date: 2004/08/31 14:24:47 $
- Version: $Revision: 1.17 $
+ Date: $Date: 2004/09/03 07:57:10 $
+ Version: $Revision: 1.18 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
std::string GetVR() { return DictEntry->GetVR(); };
/// \brief Returns offset (since the beginning of the file, including
- /// the File Pramble, if any) of the value of the current Dicom HeaderEntry
+ /// the File Preamble, if any) of the value of the current Dicom HeaderEntry
/// \warning offset of the *value*, not of the Dicom Header Entry
size_t GetOffset() { return Offset; };
bool IsImplicitVR() { return ImplicitVR; };
/// \brief Tells us if the VR of the current Dicom Element is Unknown
- /// @return true if the VR is unkonwn
+ /// @return true if the VR is unknown
bool IsVRUnknown() { return DictEntry->IsVRUnknown(); };
/// \brief Sets the DicEntry of the current Dicom Element
Program: gdcm
Module: $RCSfile: gdcmDocument.h,v $
Language: C++
- Date: $Date: 2004/09/03 04:16:29 $
- Version: $Revision: 1.33 $
+ Date: $Date: 2004/09/03 07:57:10 $
+ Version: $Revision: 1.34 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/// \brief Optional "shadow dictionary" (private elements) used to parse
/// this header
gdcmDict *RefShaDict;
-
- /// \brief Equals =1 if user wants to skip shadow groups while parsing
- /// (to save space)
- int IgnoreShadow;
/// \brief Size threshold above which an element value will NOT be loaded
/// in memory (to avoid loading the image/volume itself). By default,
Program: gdcm
Module: $RCSfile: gdcmElementSet.h,v $
Language: C++
- Date: $Date: 2004/09/03 04:16:29 $
- Version: $Revision: 1.12 $
+ Date: $Date: 2004/09/03 07:57:10 $
+ Version: $Revision: 1.13 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/// Accessor to \ref gdcmElementSet::tagHT
// Do not expose this to user (public API) !
+ //I re-add it temporaryly JPRx
TagDocEntryHT &GetEntry() { return TagHT; };
protected:
Program: gdcm
Module: $RCSfile: gdcmFile.h,v $
Language: C++
- Date: $Date: 2004/09/01 16:23:59 $
- Version: $Revision: 1.43 $
+ Date: $Date: 2004/09/03 07:57:10 $
+ Version: $Revision: 1.44 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/// ==-1 if ImageData never read
int PixelRead;
+ /// wether already parsed
+ bool Parsed;
+
/// \brief length of the last allocated area devoided to receive Pixels
/// ( to allow us not to (free + new) if un necessary )
size_t LastAllocatedPixelDataLength;
- /// \brief Samples Per Pixel (0x0028,0x0002), as found on disk
+ /// \brief Samples Per Pixel (0x0028,0x0002), as found on disk
std::string InitialSpp;
- /// \brief Photometric Interpretation (0x0028,0x0004), as found on disk
+ /// \brief Photometric Interpretation (0x0028,0x0004), as found on disk
std::string InitialPhotInt;
- /// \brief Planar Configuration (0x0028,0x0006), as found on disk
+ /// \brief Planar Configuration (0x0028,0x0006), as found on disk
std::string InitialPlanConfig;
- /// \brief Bits Allocated (0x0028,0x0100), as found on disk
+ /// \brief Bits Allocated (0x0028,0x0100), as found on disk
std::string InitialBitsAllocated;
- /// wether already parsed
- bool Parsed;
+
+
};
//-----------------------------------------------------------------------------