Program: gdcm
Module: $RCSfile: gdcmDocument.cxx,v $
Language: C++
- Date: $Date: 2005/10/18 09:17:08 $
- Version: $Revision: 1.290 $
+ Date: $Date: 2005/10/18 10:43:31 $
+ Version: $Revision: 1.291 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
return;
}
- // Group 0002 is always 'Explicit ...' enven when Transfer Syntax says 'Implicit ..."
+ // Group 0002 is always 'Explicit ...' even when Transfer Syntax says 'Implicit ..."
if ( Global::GetTS()->GetSpecialTransferSyntax(ts) == TS::ImplicitVRLittleEndian )
{
}
// FIXME Strangely, this works with
- //'Implicit VR Transfer Syntax (GE Private)
+ //'Implicit VR BigEndian Transfer Syntax (GE Private)
+ //
+ // --> Probabely normal, since we considered we never have to trust manufacturers.
+ // (we find very often 'Implicit VR' tag, even when Transfer Syntax tells us it's Explicit ...
if ( Global::GetTS()->GetSpecialTransferSyntax(ts) == TS::ExplicitVRBigEndian )
{
gdcmWarningMacro("Transfer Syntax Name = ["
Program: gdcm
Module: $RCSfile: gdcmPixelReadConvert.cxx,v $
Language: C++
- Date: $Date: 2005/10/18 08:35:50 $
- Version: $Revision: 1.79 $
+ Date: $Date: 2005/10/18 10:43:31 $
+ Version: $Revision: 1.80 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
IsRaw =
( ! file->IsDicomV3() )
|| Global::GetTS()->GetSpecialTransferSyntax(ts) == TS::ImplicitVRLittleEndian
- || Global::GetTS()->GetSpecialTransferSyntax(ts) == TS::ImplicitVRLittleEndianDLXGE
+ || Global::GetTS()->GetSpecialTransferSyntax(ts) == TS::ImplicitVRBigEndianPrivateGE
|| Global::GetTS()->GetSpecialTransferSyntax(ts) == TS::ExplicitVRLittleEndian
|| Global::GetTS()->GetSpecialTransferSyntax(ts) == TS::ExplicitVRBigEndian
|| Global::GetTS()->GetSpecialTransferSyntax(ts) == TS::DeflatedExplicitVRLittleEndian;
Program: gdcm
Module: $RCSfile: gdcmTS.h,v $
Language: C++
- Date: $Date: 2005/04/22 13:37:57 $
- Version: $Revision: 1.20 $
+ Date: $Date: 2005/10/18 10:43:32 $
+ Version: $Revision: 1.21 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
public:
enum SpecialType {
ImplicitVRLittleEndian = 0,
- ImplicitVRLittleEndianDLXGE,
+ ImplicitVRBigEndianPrivateGE,
ExplicitVRLittleEndian,
DeflatedExplicitVRLittleEndian,
ExplicitVRBigEndian,