]> Creatis software - gdcm.git/blob - ChangeLog
2002-12-6 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
[gdcm.git] / ChangeLog
1 2002-12-6 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
2       * wrapping python correct with standalone wrapped dll (don't use separate
3          dll under windows !!!!)
4       * removed glib references
5       * typedef's inserted in gdcm.i for correct swig type management
6       * python21_d MODE DEBUG enabled (ask Frog how to use it)
7       * NO problem with having an STL member of class for example string in C++
8       * PYTHON TEST OF DCMLIB OK UNDER WINDOWS ON A LARGE SET (one) of IMAGE(s).
9
10 2002-11-27 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
11       * python/demo/*.py load.py extracted from test.py. Added explore.py
12         that only displays required tags and testAll.py that parses all
13         the files of the testsuite without using unittest.
14       * python/testSuite.py other additional test on new files added.
15       * Data/* new test files added accordingly to the testSuite.
16       * src/gdcmHeader.cxx avoid overwriting of the dictionary when
17         the vr in the file differs from the one of the dictionary.
18
19 2002-11-20 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
20       * src/gdcm.h and gdcmHeader.cxx gdcm no longer loads all the elements
21         values, but limits itself to values which are below a user specified
22         size (by default 1024 bytes).
23       * python/gdcm.i : elements not loaded (because their size is above the
24         user specified treshold) are exported with their TagKey as key of the
25         python dictionary. This enables the testsuite to make some checks
26         on the unloaded elements (since we have their offset and size).
27       * python/testSuite.py
28         - now tests for the existence and proper value of the pixel data
29         - two new examples added.
30       * Data/gdcm-MR-SIEMENS-16.acr[12] added.
31
32 2002-11-18 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
33       * src/gdcm.h and gdcmHeader.cxx are now "Big Endian transfer syntax"
34         aware. See the strategy comments in gdcmHeader::FindeLength().
35       * Test/test.cxx now accepts a filename as first argument.
36       * Data/US-PAL-8-10x-echo.dcm and US-RGB-8-epicard.dcm added.
37       * python/testSuite.py changed to integrate test on above files.
38
39 2002-11-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
40       * Dicts/dicomV3.dic removed all the trailing (RET) when the
41         the vr was also RET.
42       * python/testSuite.py more tests added.
43
44 2002-11-14 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
45       * python/testSuite.py unittest test suite added (uses Data)
46       * Data/* dcm and acr files for the test suite.
47       * glib dependance removed from un*x version. We now use ISO C99
48         7.18 Integer types (see stdint.h)
49         - python/Makefile, src/Makefile src/gdcm.h
50       * src/ when an explicit vr (like dicom files) suddenly poped an
51         implicit element we use to mark the underlying DictEntry of the
52         concerned ElValue with "Implicit". This strategy was damageable
53         too the public or provite dictionaries, since some of their vr
54         would be changed. Since Header::FindLength heavily relies on the
55         detection by Header::FindVR of falsely explicit elements, I
56         added an extra ImplicitVr member to ElValue (boolean).
57         The rest of the changes we the necessary adaptations.
58
59 2002-11-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
60       * src/gdcmHeader::FindLength bug fix when trapping falsely explicit
61         VR files.
62       * src/gdcmHeader::FindVR: hard way fix of falsely explicit vr files.
63
64 2002-11-8 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
65       * Adaptation for porting to VC++:
66         - src/gdcm.h
67           o forced to use std namespace (for string to be known)
68           o all class use __declspec export style on WIN32
69         - src/gdcmUtil.cxx new Exit method that wraps the exit call
70           (in stdlib.h on Win32 but in std:: for gcc)
71       * src/gdcmDictSet::SetDictPath adds a trailing / to environement
72         variable GDCM_DICT_PATH.
73       * src/gdcmHeader.cxx verbose comments made discrete.
74
75 2002-11-7 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
76       * python/gdcm.i: added a typemap that converts a C++ hashing table
77         to native Python dictionary.
78       * python/demo/test.py:
79         - now uses the native dictionary for exploration of gdcmHeader.
80         - takes an optional filename argument (the file to parse).
81       * src/gdcm.h and gdcmHeader.cxx: gdcmHeader now has an accessor on
82         PubElVals hashing table. 
83       * Dicts/dicomV3.dic removed error prone trailing spaces.
84
85 2002-11-6 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
86       * Python wrapping process moved away from src/Makefile to
87         newly created python/Makefile (as well as gdcm.i)
88       * python/demo/test.py (that mirrors Test/test.cxx) is effective.
89       * src/gdcmHeader::FindLength only looks for current vr when necessary.
90       * src/gdcmDictSet.cxx: the dictionnaries directory path is now imported
91         from the environement variable GDCM_DICT_PATH (when existing).
92       * src/gdcmDict::GetTag bug fix.
93
94 2002-10-31 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
95       * Straightforward temporary fixes for swig to build the python wrappers.
96         src/Makefile now has a python working entry [by working we mean
97         that we can import de shadow classes without errors].
98
99 2002-10-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
100       * hashtest.cxx removed (since allready in Test)
101       * src/gdcmlib.h renamed to src/gdcm.h
102       * src/dcm.i renamed to src/gdcm.i
103       * src/Makefile prepared for python wrapping
104
105 2002-10-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
106       * src/gdcmHeader.cxx :
107         - Parsing of header is now separated from loading of element values
108           (see gdcmHeader::LoadElements).
109         - general clean up of hopefully all file access (creation of
110           ReadInt16 and ReadInt32)
111
112 2002-10-22 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
113       * src/gdcmHeader.cxx :
114         - RecupLgr renamed to FindLength and cut off with new IsAnInteger
115           method.
116         - SetLgrElem renamed to SetLength
117         - GetLgrElem renamed to GetLength
118         - ~gdcmHeader() made virtual to pesky warning messages at compile.
119       * src/gdcmElValSet.cxx fixed both GetElValue methods
120       * Dicts/dicomV3.dic falacious entry [7fe0 0010 OT PXL Pixel Data]
121         due to IdoDude was cleaned out.
122
123 2002-10-21 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
124       * src/gdcmHeader.cxx RecupLgr split in FindVR and RecupLgr. FindVR
125         concentrates on finding the value representation (when it exists).
126         RecupLgr now only finds the element value length, and it avoids
127         returning the unecessary skL (skipped length).
128         Also, offsetCourant was simply removed (with taille_fich) since
129         it was redundant with the File position internals (by using
130         ftell and fseek). This also made skL (see above in RecupLgr) usage
131         jajun.
132       * src/gdcmHeaderIdo.cxx src/gdcmIdo.h added. Those files concentrate
133         on the libido specificities which are handled through class 
134         inheritance.
135       * Test/implicit_vr.dcm dicom v3 in implicit value representation
136         added. 
137
138 2002-10-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
139       * Truckload of changes. Parsing of header is barely functional
140         (see Test/test) with the standard dictionary (see Dicts/dicomV3.dic).
141
142 2002-10-10 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
143       * src/gdcmHeader.cxx many addons of low level methods
144
145 2002-10-07 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
146       * src/gdcmHeader now contains_IdDcmCheckSwap, _IdDcmRecupLgr,
147         and _IdDcmSWAP_LONG.
148
149 2002-09-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
150       * This corresponds to all the changes decided at the meeting of
151         May 23 2002. Needless to say we are running late...
152