]> Creatis software - gdcm.git/blob - ChangeLog
ENH: Some cosmetic cleanup of gdcmFile, main changes are: lgrTotal -> ImageDataSize...
[gdcm.git] / ChangeLog
1 2004-06-23 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
2    * Test/PrintAllDocument.cxx: looping on files is now effective. It used to
3      loop on the same image until memory went out. 
4      Note: this means we still have gobs of memory loss in PrintDocument
5    * src/gdcmDocument.cxx: fixes problem on parsing on file
6      gdcmData/16BitsJpegLosslessGrayScale.dcm.
7 2004-06-24 Jean-Pierre Roux
8 FIX : Write - All the Sequences and Sequence Item are now written 
9             as 'no length' stuff, and a Sequence Delimitor aor an Item Delimitor
10                                 is added a the end, when necessary.
11             - A lot of brain-damaged images, that were read correctly are 
12                       now written correctly
13                                 - length compatible BinEntry are now loaded correctly 
14                                 (even for odd groups) 
15         Note : only Explicit Value Representation was checked.
16                                 (question : is implicit VR really necessary for gdcm ?)
17
18 2004-06-23 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
19    * DEVELOPPER: added a proposition of coding style.
20    * src/gdcmDocEntry.h: removed every inline declaration (for test of 
21      coding style).
22
23 2004-06-23 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
24    * gdcmDocEntry::PrintCommonPart() and ::WriteCommonPart() removed.
25      Use the gdcmDocEntry::Print() and Write() instead.
26    * src/gdcmDocument.cxx: bug fix.
27
28 2004-06-22 Jean-Pierre Roux
29    FIX : gdcmDocument.cxx
30       - Now we do recognize the JpegLossLess format (there was a misstyping in
31         code 'beautyfication' :-(
32       - Now we automaticaticaly load the Luts, if any
33
34 2004-06-22 Jean-Pierre Roux
35    In order : to write Sequences, whatever their imbrication level, 
36                  : to allow user to create his own Sequences
37         a lot of modif where necessary (adding, moving, or virtualising methods)
38
39 WARNING : save your own sources *before* cvs up !
40         
41         - gdcmBinEntry
42           ADD virtual void Write(FILE *fp, FileType filetype);
43           
44    - gdcmDocEntry
45           ADD virtual void Write(FILE *fp, FileType filetype);
46           ADD void gdcmDocEntry::WriteCommonPart(FILE *fp, FileType filetype);
47           
48         - gdcmDocEntrySet
49           ADD virtual void Write (FILE *fp, FileType filetype)=0;
50           ADD   virtual gdcmDocEntry *GetDocEntryByNumber(guint16 group,guint16 element) = 0;
51      ADD gdcmDocEntry *GetDocEntryByName(std::string name);
52      ADD virtual std::string GetEntryByNumber(guint16 group,guint16 element) = 0;
53      ADD std::string GetEntryByName(TagName name);                       
54      ADD gdcmDictEntry *NewVirtualDictEntry(guint16 group, 
55                                             guint16 element,
56                                             std::string vr     = "unkn",
57                                             std::string fourth = "unkn",
58                                             std::string name   = "unkn"); 
59           ADD gdcmValEntry *NewValEntryByNumber(guint16 group, guint16 element);                                                                                                 
60      ADD gdcmBinEntry *NewBinEntryByNumber(guint16 group, guint16 element);     
61      ADD gdcmDocEntry *NewDocEntryByNumber(guint16 group, guint16 element); 
62      ADD gdcmDocEntry *NewDocEntryByName  (std::string Name);   
63      ADD gdcmDictEntry *GetDictEntryByName   (std::string Name);
64      ADD gdcmDictEntry *GetDictEntryByNumber(guint16, guint16);
65           REM virtual gdcmDocEntry *NewDocEntryByNumber(guint16 group, guint16 element)=0;
66      REM virtual gdcmDocEntry *NewDocEntryByName  (std::string Name)=0;
67           
68         - gdcmDocument
69      ADD virtual bool WriteF(FileType type); // New stuff, with recursive exploration           
70      ADD virtual std::string GetEntryByName    (TagName tagName);
71      ADD virtual std::string GetEntryVRByName  (TagName tagName);
72      REM virtual bool Write(FILE *, FileType);
73      REM virtual void WriteEntryTagVRLength(gdcmDocEntry *tag,
74                                         FILE *_fp, FileType type);
75      REM virtual void WriteEntryValue(gdcmDocEntry *tag,FILE *_fp,FileType type);
76      REM virtual bool WriteEntry(gdcmDocEntry *tag,FILE *_fp,FileType type);
77      REM virtual bool WriteEntries(FILE *_fp,FileType type);
78      REM virtual std::string GetEntryByName    (std::string tagName);
79      REM virtual std::string GetEntryVRByName  (std::string tagName);
80      REM gdcmDictEntry *GetDictEntryByName  (std::string Name);
81      REM gdcmDictEntry *GetDictEntryByNumber(guint16, guint16);
82      REM gdcmDictEntry *NewVirtualDictEntry(guint16 group, 
83                                             guint16 element,
84                                             std::string vr     = "unkn",
85                                             std::string fourth = "unkn",
86                                             std::string name   = "unkn");
87      REM gdcmDocEntry *NewDocEntryByNumber(guint16 group, guint16 element);
88      REM gdcmDocEntry *NewDocEntryByName  (std::string Name);
89      REM gdcmValEntry *NewValEntryByNumber(guint16 group, guint16 element); 
90      REM gdcmBinEntry *NewBinEntryByNumber(guint16 group, guint16 element); 
91                                                                                                                  
92         - gdcmElementSet
93           ADD virtual void Write(FILE *fp, FileType filetype);
94           
95    - gdcmSeqEntry
96           ADD virtual void Write(FILE *fp,FileType filetype);
97  
98    - gdcmSQItem
99      ADD virtual void Write(FILE *fp, FileType filetype);
100      ADD virtual std::string GetEntryByNumber(guint16 group, guint16 element);        
101      REM std::string GetEntryByNumber(guint16 group, guint16 element);
102      REM std::string GetEntryByName(TagName name);
103
104    - gdcmValEntry
105          ADD virtual void gdcmValEntry::Write(FILE *fp, FileType filetype); 
106                                   
107 2004-06-21 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
108     * Test/TestWriteSimple.cxx: fix to gdcmHeader-gdcmHeaderHelper revamping.
109       The default constructor invoked by the line
110          gdcmHeader *f1 = new gdcmHeader( header );
111       was gdcmHeader::gdcmHeader(bool) instead of the expected
112       gdcmHeader::gdcmHeader(std::string const &, bool = false, bool, bool).
113       Hence the parsing wasn't executed... See also below.
114     * src/gdcmHeader.h: the declaration of gdcmHeader::gdcmHeader(bool)
115       as explicit constructor didn't do the trick to fix the above problem.
116       Could anyone explain why ?
117     * src/gdcmBinEntry.cxx, gdcmValEntry.cxx: gdcmBinEntry::Print() now
118       properly calls gdcmValEntry::Print() (that was weed out from 
119       code related to gdcmBinEntry).
120
121 2004-06-20 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
122     * In order to fix memory leaks:
123      - Test/TestWriteSimple.cxx: added cleaning of free store through
124        some delete calls.
125      - src/gdcmBinEntry.cxx: fix to avoid SegFault.
126      - src/gdcmDicomDir.[cxx|h]: fixed initialisation in constructor
127        gdcmDicomDir::gdcmDicomDir(bool) [either the constructor itself
128        (through the call to ::AddDicomDirMeta()) or the destructor
129        would crash when deleting uninitialized ::metaElems].
130      - src/gdcmDictEntry.cxx: annotation of ununderstood memory leak.
131      - src/gdcmDocument.cxx:
132        -- ::~gdcmDocument() destructor now cleans up all dictionary entries
133           from dynamic stores.
134        -- ::ParseDES() misplaced deletion of temporary NewDocEntry
135           was causing memory leaks.
136      - src/gdcmSQItem.cxx:
137        -- ::~gdcmSQItem() dummy code cleaned (learned that deletion is
138           cleanly handled with polymophism: sorry but my milage is low).
139        -- ::SetEntryByNumber(string, guint16, guint16) now cleanly allocates
140           a gdcmValENtry, and makes no assumption on type (gdcmDocEntry,
141           gdcmSeqEntry vs gdcmValEntry) of existing entry (when present).
142           This avoids SegFaulting.
143      - src/gdcmSQItem.h: coding style.
144     * Conclusion:
145      - Test/TestWriteSimple still severely sucks. The output image content
146        (when $(GDCMDATA_HOME)/012345.002.050.dcm in input) is brain
147        damaged when displayed with vtkgdcmViewer.
148      - on memory leaks: TestWriteSimple leaks really less (see entry
149        of 2004-06-18 in Changelog file for the call to valgrind).
150      - on segfaults: ctest now passes all the tests but one (no more
151        segfaults).
152     * Erroneous leading white fix:
153      - src/gdcmDict.cxx: getline(from,xxx) doesn't remove the leading
154        white[s] (as opposed to from >> xxx, that removes it [them].
155      - src/gdcmTS.cxx: ditto.
156      - gdcmPython/testSuite.py: dirty related kludge removed.
157     * src/*: remaining references to gdcmParser removed.
158     * src/*[cxx|h]: added copy[way]left header.
159
160
161 2004-06-18 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
162     * In order to fix writing of dicom files:
163      - Test/TestWriteSimple.cxx: a simpler example of writing.
164      - Test/CMakeLists.txt changed accordingly.
165      - src/gdcmDocument.cxx:
166        -- The destructor now recursilvely removes potential sequences.
167        -- Bug fix in ::IsJPEG2000()
168        -- ::ReplaceOrCreateByNumber(std::string, guint16, guint16)
169           now handles promotion of gdcmDocEntry to gdcmValEntry in a cleaner
170           manner.
171        -- ::GetValEntryByNumber(guint16, guint16) now defined (as opposed
172           to only declared) and build on top of
173           ::GetDocEntryByNumber(guint16, guint16).
174        -- ::SetEntryByNumber() now uses GetValEntryByNumber(group, element)
175      - src/gdcmElementSet.[h|cxx]: added ::RemoveEntry(gdcmDocEntry *)
176        for usage in destructor and treatement of promotion in
177        ::ReplaceOrCreateByNumber().
178      - src/gdcmSQItem.cxx: destructor should better handle his job.
179       Test/TestWriteSimple now runs (or at least it DOES something).
180     * We can now start hutting memory links. A good starting point is:
181       valgrind -q --skin=memcheck --leak-check=yes --leak-resolution=high
182       --num-callers=100 --show-reachable=yes gdcmTests TestWriteSimple
183       $(GDCMDATA_HOME)/012345.002.050.dcm foo.dcm
184
185 2004-06-18 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
186     * Valgrind note: after Mathieu Malaterre teached me how to read
187       the valgrind FAQ ;-] (see http://valgrind.kde.org/faq.html), I
188       learned that:
189           Using gcc, you can force the STL to use malloc and to free memory as
190           soon as possible by globally disabling memory caching.
191           With 3.2.2 and later, you should export the environment variable
192           GLIBCPP_FORCE_NEW before running your program.
193       By setting GLIBCPP_FORCE_NEW, STL related memory leak messages of gdcm
194       simply vanish (it is still not clear to me, whether this means that
195       STL std::string leaks or if valgrind believes it leaks...).
196     * Fixing of SegFault of Test/makeDicomDir (as shown by ctest or by
197       running bin/gdcmTests makeDicomDir):
198       - src/gdcmDicomDir.cxx: dynamic casting used + clean up.
199       - Test/makeDicomDir.cxx now properly traps empty lists and returns
200         with 1.
201       NOW, makeDicomDir cleanly fails (in ctest terminology) instead of
202       SegFaulting (I drowned in DicomDir related code when trying to
203       understand why the list is empty...).
204     * src/gdcmDocument.h: first BSD license header try.
205     * Doc/License.txt added.
206
207 2004-06-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
208     * src/gdcmDocument.[h|cxx]:
209       - Clean up of the Transfer related predicates. They are now all based
210         on new method isGivenTransferSyntax, that (should) handle properly
211         the padding problem.
212       - general clean up, simplification, and coding style.
213       - Specific clean up of Parse7FE0() (umproperly named actually).
214     * gdcmPython/testSuite.py: an odd temporary kludge introduced.
215
216 2004-06-14 Jean-Pierre Roux             
217    *  gdcmSeqEntry.cxx
218            - fix the display of Sequence Delimitor (SQDepthLevel pb)
219                 - fix the display of SQItem ordinal number
220       - add the GetSQItemByOrdinalNumber method
221                 - remove some useless never written private methods     
222                 
223 2004-06-14 Jean-Pierre Roux
224    * gdcmBinEntry.cxx 
225       - adding a constructor taking a gdcmDocEntry as an input param
226            - ReplaceOrCreateByNumber now returns :
227               a gdcmBinEntry * if a Binary (void *) value is passed as a param
228                    a gdcmValEntry * if a string value is passed as a param
229    * dcmDocument.cxx
230       - SetEntryByNumber now allows setting gdcmValEntry or gdcmBinEntry, 
231               according to the param type (no longer sets a gdcmDocEntry)
232            - GetValEntryByNumber, GetBinEntryByNumber added
233       - NewValEntryByNumber and NewBinEntryByNumber added
234    * gdcmFile.cxx
235       - Pixel Data are now linked to the (7fe0,0010) elements, after reading
236    * gdcmSQItem.h
237       - GetSQItemNumber and SetSQItemNumber added, to provide 
238             a (relative) Item identier inside a given Sequence
239             \warning : some pb remaining around this number
240                                 will be solved asap
241       - AddEntry now takes the Item Number as a param   
242    * gdcmValEntry.cxx 
243       - adding a constructor taking a gdcmDocEntry as an input param    
244
245 2004-06-14 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
246     * Memory leak hunt with the following command:
247       valgrind --leak-check=yes --leak-resolution=high --num-callers=40
248                --show-reachable=yes gdcmTests PrintDocument
249       It looks like many (all?) leaks are due to the STL (or a bad usage
250       of the STL. The lines producing the leaks now have a comment with
251       a "MEMORY LEAK" tag: you can retrieve them with 
252           grep "MEMORY LEAK" src/*
253       Here are two typical examples which I can't help fixing:
254       -----
255           #include <string>
256           int main() {
257              std::string name;
258              char * test = "babo";
259              name = test;    //// <--- valgrind detects 960 bytes lost in
260                              ////   call to std::string::operator=(char const*)
261              name.clear();   //// Doesn't help !
262              return 0;
263           }
264       -----
265           #include <string>
266           #include <iostream>
267           int main() {
268              std::string line;
269              std::cout << "Type a bunch of characters followed by RETURN: ";
270              getline(std::cin, line);   //// <--- valgrind dectects a loss
271                                         //// of 1320 bytes in call to
272                                         /// std::basic_istream<>& std::getline<>
273             return 0;
274           }
275       -----
276
277
278 2004-06-10 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
279     * src/gdcmHeader.[cxx|h]:
280       - Predicates on the Transfer syntax (of the form Is[JPEG|RLE]*)
281         and related, moved away to gdcmDocument.
282       - Accessors (on the form [Get|Set]Entry*) set up to expose publicly
283         the corresponding protected accessors of inherited class
284         gdcmDocument, removed ! As a consequence gdcmFile had to be 
285         declared friend of class gdcmDocument (see below).
286       - operator< moved to gdcmDocument (in fact it belongs to gdcmDicomDir).
287       - Clean up of undefined or unused methods.
288     * src/gdcmFile.[cxx|h]: added SetEntryByNumber (in order to take into
289       account the changes to gdcmHeader.h).
290     * src/gdcmDocument.h:
291       - gdcmFile is now a friend class (in order to take into account the
292         changes to gdcmHeader.h).
293       - Predicates on the Transfer syntax (of the form Is[JPEG|RLE]*) added
294         (see changes to gdcmHeader.h).
295       - Accessors (reading on the form GetEntry*) are now public.
296       - Clean up of undefined or unused methods.
297     * src/gdcmDocument.cxx:
298       - adaptation to changes to gdcmDocument.h
299       - ::OpenFile now writes a verbose message when file cannot be opened.
300       - some std::string properly set to VRKey
301     * src/gdcmDicomDir.h: historical references to gdcmHeader changed to
302       references to gdcmDocument. 
303     * Test/TestFindTags.cxx: changed accordingly to above changes.
304     * gdcmPython/testSuite.py: adapted to renaming of acr files in 
305       cvs repository gdcmData.
306
307 2004-06-09 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
308     * src/gdcmValEntry.h: member voidArea type changed from char* to void*.
309     * src/gdcmBinEntry.h: member voidArea commented out, since it potentially
310       conflicts with gdcmValEntry::voidArea.
311     * src/gdcmValEntry.cxx: unmatching comment wiped out.
312     * src/gdcmVR.[h|cxx]: added two predicates that partition the possible
313       Value representation between StringRepresentable and BinaryRepresentable.
314     * src/gdcmDocument.cxx: 
315       - method ParseDES: proper indentation restored and usage of
316         gdcmVR::IsVROfGdcmStringRepresentable wired in.
317       - method LoadDocEntry: the fingerprint left in the SetValue() of
318         unloaded entries (length > MaxSizeLoadEntry) had curiously been
319         removed. Reverting to previous code segment with the proper
320         dynamic_cast< gdcmValEntry* >.
321         Note: this was (partially) breaking the python test suite
322               (gdcmPython/testSuite.py) that made usage of the above
323               fingerprint to check presence of "Pixel Data".
324     * src/gdcmDocEntry.h: coding style.
325     * gdcmPython/__init__.py: environement variable GDCM_DATA_PATH is
326       now taken into account.
327     * gdcmPython/gdcm.i: adaptation to the new internal representation
328       of gdcm (exit gdcmParser, hello gdcmDocument).
329     * gdcmPython/testSuite.py: quick and dirty fix for loading vtkgdcmPython
330       on posix.
331     * gdcmPython/demo/PrintHeader.py: doesn't use the gdcmDocument::Print()
332       anymore, but instead prints the loaded Python dictionary.
333     * .... alas, the python testSuite is still broken.
334
335 2004-05-18 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
336     * gdcmPython/gdcm.i : remove useless lines concerning the gdcmGlobal 
337       gdcmGlob
338     * gdcmPython/setup.py : replace the use of cvar.gdcmGlob to gdcmGlobal
339     * src/gdcmUtil.h : export methods
340
341 2004-05-16  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
342     * Some more cleanup/enhancement in gdcmPython/CMakeLists.txt getting close
343       to right behavior
344     * Initial addition of automatic python testing
345     * Initial addition of automatic image comparison
346
347 2004-05-04 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
348     * src/gdcmCommon.h, gdcmDicomDir.cxx, gdcmFile.cxx, gdcmHeaderHelper.h,
349       gdcmParser.cxx, gdcmParser.h : bug fix for the Microsoft .Net compilation
350
351 2004-05-04 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
352      * src/gdcmFile.cxx, gdcmHeader.cxx : bug fix for the msvc compilation
353      * Test/ShowDicom.cxx : bug fix for msvc compilation
354      * vtk/vtkgdcmViewer.cxx : bug fix for msvc compilation
355
356 2004-05-04 Jean-Pierre Roux
357      * ADD Taking into account the 'Dicom Sequences' leads up to introduce
358        new concepts (and new classes) :
359        a 'gdcmDocument' is composed of a set of Doc Entries, that are
360         - elementary gdcmDocEntries (former gdcmHeaderEntries)
361         - Sequence Doc Entries (gdcmSeqEntries)
362        a Sequence is composed of Items.
363        Each item is a set of Doc Entries (this is recursive)
364        The non uniqueness of the 'Dicom tag' is due to this recursivity
365        (never taken into account)
366        Our unability to add a new 'entry' in the header
367        at the proper location (neither in the H-Table (map or multimap),
368        nor in the Chained List is also due to this recursivity.
369        Don't try, right now, to use/modify/compile these new sources :
370        nothing is finished.
371        We just commit all the stuff, 'as is', in order not to loose it.
372
373 2004-05-04 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
374      * vtk/vtkGdcmReader.cxx : bug fix in the setting of file name
375      
376 2004-05-03 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
377      * vtk/vtkGdcmReader.cxx : bug fix when loading a list of files using the
378        file prefix (SetFilePrefix)
379
380 2004-05-02  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
381      * Add a new test: ShowDicom, for now this is just the c++ version of
382        checkRead.sh, later it will be able to compare the image read against a
383        baseline.
384      * Replace the DEBUG on the stack with a global entry in cmake interface:
385        GDCM_DEBUG, so you can turn verbosity ON/OFF for debug statement.
386
387 2004-04-30  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
388      * Add an example subdir, with a real example on how to read + write a 
389        dicom image
390
391 2004-04-30  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
392      * Doc/gdcmUML.xmi added raw UML class view (umbrello format)
393      * Doc/CMakeLists.txt: the main page is now properly differentiated
394        between the developper and user version.
395      * Doc/doxygen.config.in: dropped search related obsolete flags
396      * src/gdcmParser.h, gdcmHeader.h: doxygenation
397
398 2004-04-29  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
399      * DEVELOPPER: added some helpfull comments for compile/test/install
400        when using cmake.
401
402 2004-04-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
403      * ENH: 1. Remove remp solution of gdcmTests.cxx+ gdcmMain directly in 
404                src directory, now generated in the build dir.
405             2. Tests as mentionned smarter
406             3. Some clean up
407             4. Add a new method in gdcmDict that return the PubDict by name 
408           this is interesting for 3rd party lib like ITK, 
409           where we could set the institution name / patient name...
410
411        * ENH: 1. Now the test suite is working for real
412               2. All binaries are now output in the gdcm-bin directory 
413                  (this was not true before)
414
415 2004-04-28  Jean-Pierre Roux
416      * ENH add the provisional  gdcmHeader::SQDepthLevel to allow 
417            SeQuence indented printing of Dicom Header.
418      * ENH merge methods gdcmParser::Parse and gdcmParser::LoadHeaderEntries
419            into the single gdcmParser::LoadHeaderEntries for efficiency purpose.
420            Computation of SQDepthLevel is now part of gdcmHeader constructor
421      * ENH add self defined param 'new' to PrintHeader to 'show' the SeQuence
422            tree-like structure of a Dicom Header.
423      * FIX Test code cleaning     
424            
425 2004-04-25  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
426      * ENH: Adding automatic testing
427        1. Need a DartConfig.cmake to submit to public
428        2. Add a test driver gdcmTest.cxx
429        3. gdcmTestMain, an helper for the main test driver gdcmTest
430        4. Files in Test don't have a main anymore, this becomes interesting 
431           when we add more and more tests, thus dsw don't have to load 
432           too many projects
433      * ENH: Adding a GDCM_DATA_ROOT for testing
434      * ENH: Remove redundancie about GDCM_DICT stuff, now we only need to modify
435        one file instead of seven + some small cleanup
436
437 2004-04-22  Jean-Pierre Roux
438      * ENH Minor changes to the Print() methods.
439      * ADD gdcmParser::PrintEntryNiceSQ() to allow SQ-indented
440            Header printing. Example given with :
441            > PrintHeader fileName  2 new
442           (SQ based tree-like structure still to be done for the Header ...)
443            
444 2004-04-22  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
445      * ENH: Some cosmetic clean up for compilation with -W -Wall -Werror
446          1. I have added some unsigned where needed
447          2. Some function parameter not used -> (void)
448          3. In gdcmDicomDir.cxx, add GDCM_DICOMDIR_NONE case
449          4. g++ don't like character '\' in comment
450          5. #define jpeg_create_decompress  jCreaDecompress
451                     this really need to be fixed
452          6. virtualize destructor of gdcmObject ... leakage
453          7. sscanf(g->first.c_str(),"%x",&gr_bid); 
454                     this also really need to be fixed
455          8. gdcm/src/jpeg/libijg8/CMakeLists.txt, 
456                     remove compression file 
457                     (as we only do decompression, right ?)     
458      * ENH: Change malloc/calloc/free with c++ equivalent
459
460 2004-04-21  Jean-Pierre Roux
461      * FIX gdcmHeaderHelper::GetXSpacing
462            when a single value is found (bug ?), xpacing is now 
463            defaulted to yspacing
464            
465 2004-04-19  Jean-Pierre Roux
466      * ADD gdcmData/Wrist.pap (PAPYRUS 3.0 -single frame-) for checking purpose
467      * ENH add parameters :
468                bool  exception_on_error = false, 
469                bool  enable_sequences   = false,
470                bool  ignore_shadow      = false
471            to the gdcmFile constructors to be full gdcmParser compliant
472      * FIX vtk/vtkGdcmReader.cxx now uses  enable_sequences = true in gdcmFile
473            to allow reading of PAPYRUS 3.0 files 
474               
475 2004-04-06  Jean-Pierre Roux
476      * ADD gdcmData/E00001S03I0015.dcm for SQ checking purpose
477      
478 2004-04-02  Jean-Pierre Roux
479      * ADD : Test/checksequence.sh, for a general recap on SQ pb
480      * FIX : gdcmParser::WriteEntryTagVRLength emprovement of special treatement
481              for Philips spurious Tag fffe|0000 while rewritting Dicom files
482              
483 2004-03-30  Jean-Pierre Roux
484      * FIX gdcmParser::ReplaceOrCreateByNumber shouldn't seg fault any more 
485          for ACR file, written out as DICOM files (hope so...)
486
487 2004-03-30  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
488      * src/gdcmParser.[cxx|h] and gdcmHeader.[cxx.h]: gdcmHeader::Write split
489        in WriteEntryTagVRLength and WriteEntryValue. Those methods were
490        moved to base class gdcmParser and only the specialisation is kept
491        in gdcmHeader.
492      * src/gdcmParser.[cxx|h]: ReplaceOrCreateByNumber(char*, guint16, guint16)
493        trashed out (because ReplaceOrCreateByNumber(string, guint16, guint16)
494        already does the job.
495      * src/gdcmDicomDir.[cxx|h]: WriteDicomDirEntries renamed to WriteEntries
496        (to be consistent with gdcmParser::WriteEntries).
497
498 2004-03-30 Benoit Regrain
499      * vtk/vtkGdcmReader.[h|cxx] : fix the read of 3 gdcmHeader when making an
500        upate of the object's instance. It's passed to 2 in the unfavorable
501        case : one in the ExecuteInformation, one in the ExecuteData
502
503 2004-03-29  Jean-Pierre Roux
504      * ENH : Check on file type to be written moved
505              from gdcmParser::WriteEntry to gdcmParser::WriteEntries
506      * FIX : gdcmObject::ResetBoundaries now stops properly
507              when end-of-list is reached
508            : gdcmVersion modified (as Benoit Regrain asked)
509
510 2004-03-29  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
511      * src/gdcmParser.cxx: removal of all TAB character. Indentation fixed.
512      * src/gdcmUtil.cxx: added forgotten iostream include.
513      * src/gdcmCommon.h: FileType enum entry DICOMDIR removed (since
514        equivalent to ExplicitVR in existing code).
515
516 2004-03-27  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
517      * src/gdcmUtil.[cxx|h] split in two. Additional file gdcmGlobal.[cxx|h]
518        now contains all the gdcmGlobal related code.
519      * minor coding style and doxygenation changes.
520
521 2004-03-26  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
522      * src/gdcmUtil.[cxx|h] split in two. Additional file gdcmDebug.[cxx|h]
523        now contains all the Debug related code.
524      * minor clean-up of includes in src/*.cxx
525      * src/gdcmUtil.[cxx|h] _cleanString C style function (replaced with
526        CreateCleanString) removed.
527      * src/gdcmUtil.[cxx|h] _CreateCleanString renamed to CreateCleanString
528      * Doc/DoxyMainPageUser.txt added.
529      * Doc/Doc/DoxyfileUsers updated to version 1.3.4 of Doxygen.
530      * src/gdcmCommon.h now defines getcwd for Win32 (moved away from
531        src/gdcmDirList.cxx)
532
533 2004-03-24  Jean-Pierre Roux
534      * FIX a lot of little surface modifications to be doxygen 1.3.6 compliant
535
536 2004-03-23  Jean-Pierre Roux
537      * FIX Now gdcmFile::SwapZone doesn't seg faults any longer for
538            big endian made volumes
539      * ENH Now gdcmParser constructor and destructor are protected to forbid
540            end user to instanciate class gdcmParser
541           (only gdcmHeader and gdcmDicomDir are meaningfull)
542
543 2004-03-22 Benoit Regrain
544      * FIX : src/gdcmDicomDir.cxx : make windows compilable
545      * FIX : gdcmPython/gdcm.i : change gdcmStudy to gdcmDicomDirStudy and
546              gdcmSerie to gdcmDicomDirSerie
547
548 2004-03-19  Jean-Pierre Roux
549      * ENH Now the tree-like structure describing a DICOMDIR comming from
550            an already existing DICOMDIR file is consistent with
551            the home-made tree-like structure build ex-nihilo
552            or build from the files held (recursively) in a Directory
553            functions gdcmDicomDir::CheckBoundaries()
554            gdcmObject::SetBoundaries() added
555
556 2004-03-17  Jean-Pierre Roux
557      * REM (Eric Boix bug) : removal of meaningless
558                              gdcmDicomDirImage::NewImage function.
559      * FIX now file names and directory name are written properly in the
560            DICOMDIR
561      * FIX now gdcmDicomDir constructor may be call without any trick
562            about the name
563
564 2004-03-16  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
565      * FIX (JPR bug) : src/gdcmDicomDirImage.cxx added missing definition
566                        of gdcmDicomDirImage::NewImage as empty function.
567
568 2004-02-28  Jean-Pierre Roux
569      * ENH add gdcmDicomDir:NewPatient
570            add gdcmDicomDirPatient:NewStudy
571            add gdcmDicomDirStudy:NewSerie
572            add gdcmDicomDirSerie:NewImage
573            to allow making gdcDicomDir object.
574      * ADD PrintDicomDir executable that uses gdcmDicomDir tree-like structure
575           (as opposite to the gdcmHeader chained list)
576
577 2004-02-11 Benoit Regrain
578      * FIX : memory leaks and the set of ArgDelete methods in gdcmDicomDir
579              when using from python
580
581 2004-02-10 Benoit Regrain
582      * FIX : bug fix in the gdcmDirList for the recursivity in directories
583      * FIX : in gdcmDicomDir when the directory is empty
584      * ENH : add callback and methods to get the progression of dicomDir
585              directory parsing
586
587 2004-02-06 Jean-Pierre Roux
588      * ENH : - now gdcmDicomDir::CreateDicomDir() returns also the meta elements
589              - GDCM_META added to gdcmDicomDirType
590              - class gdcmMeta created
591      * ENH : - A brief summary is now displayed at the beginning of
592              'testDicomDir' to help disaster magnitude estimation
593      * REM : Now useless Test/explDICOMDIR.cxx
594
595 2004-02-05 Benoit Regrain
596      * ENH : add methods in gdcmObject to get the hash table or the list of
597              header entries
598      * FIX : wrapping python for ListPatient, ListStudy, ListSerie, ListImage
599      * FIX : wrapping python for TagHeaderEntryHT
600
601 2004-02-04 Benoit Regrain
602      * FIX : even length for some strings when writting the dicom dir
603      * FIX : sort the images in the dicom dir
604      * FIX : Bug fix for python use of dicom dir
605      * ADD : a python demo
606
607 2004-02-04 Jean-Pierre Roux
608      * FIX : Final solution (?) for icone embedded images
609      * FIX : dicomVR.dic Overlay group is not *only* 6000, but 60xxx
610              (see http://medical.nema.org/dicom/2003/03_06PU.PDF)
611              add groups 6002, 6004, 6006, to allow 'clean' parsing of
612              gdcmData/gdcm-MR-SIEMENS-16.acr1
613      * ENH add gdcmData/checkWriteExplicit.sh gdcmData/checkWriteImplicit.sh
614            to make full checking easier
615         
616 2004-02-04 Benoit Regrain
617      * FIX : WriteEntries : coding style & logic in parameters
618      * FIX : Set the elements to create the DicomDir in a dictionary file
619
620 2004-02-03 Benoit Regrain
621      * gdcmDirList : to parse a hard drive directory in recursive (or not)
622      * gdcmDicomDir : add the load of directory
623      * Bug fix and print add-on
624
625 2004-02-03 Jean-Pierre Roux
626      * ENH gdcmParser : allows "DICM" files, with NO group '0002'
627      * FIX handling 'non string elements' unsecure area (LUT, overlays, etc)
628      * FIX Dicts/dicomV3.dic : Add a few missing 'group length' Elements 
629      * FIX gdcmParser.cxx : 'group length' elements are now considered 
630            as integers, even for shadow groups, when file is Implicit VR
631         
632 2004-02-02 Jean-Pierre Roux
633      * FIX : gdcmWrite : equal_range() for multimap doesn't return a 'second' 
634              iterator on last
635              of the last synonym :-(
636      * FIX : gdcmWrite::WriteBase : method stops if Pixels not yet Read (except 
637              for DICOMDIR ;-)
638      * ENH gdcmData/checkWrite.sh :modif for full check of Explicit VR writting
639      * FIX taking into account the possible 7fe0,0010 multiplicity        
640      * FIX add GRPixel,NumPixel,countGrPixel (gdcmParser protected members)
641            to allow removal of references to 7fe0,0010, to deal with
642       ACR-NEMA images, when 0028,0200 is meaningfull
643
644 2004-01-31 Jean-Pierre Roux
645      * FIX gdcmParser::WriteEntries : when a VR is tagged as 'Unknown'
646            no longer writes 'Un' on disk
647      * FIX SQ elements with actual length are now dealt with corectly
648      * FIX gdcmFile::WriteBase make the difference, for color images, between
649            the length (for Palette expanded images)
650            and Raw Length (non expanded image + Palette)
651      * FIX Dicts/dicomV3.dic : removal of 'CTX' (context dependant) VR
652            (that broke Write). Replaced by UL.
653            Aware user will reload the field if he 
654            thinks it's necesssary
655              
656 2004-01-30 Jean-Pierre Roux
657      * gdcmParser::CheckSwap() now defaults the filetype to ACR 
658        when 'dirty Acr' is found, to be compliant with the new 
659        IsReadable() methods.
660        
661      * gdcmHeaderHelper :add Pixel Type 'FD', for dealing with 'double' images.
662       (no DOUBLE images in kosher DICOM, 
663       but so usefull for people that miss them ;-)
664       
665      * add Test/testDicomDir.cxx, Test/makeDicomDir.cxx , Test/explDICOMDIR.cxx
666        DICOMDIR related utilities (not checked as Windoze compliant)
667
668 2004-01-28 Jean-Pierre Roux
669      * upgrade GdcmHeaderEntry Print Method for DICOMDIR
670
671 2004-01-27 Jean-Pierre Roux
672      * gdcmParser constructor has a new boolean param,'ignore_shadow', 
673              to allow skipping the shadow elements, to save memory space.
674         The TRUE value for this param has to be used 
675         with a FALSE value for the 'enable_sequence' param.
676         ('public elements' may be embedded in 'shadow Sequences')
677      * gdcmHeader methods now deal with 'embedded icones images' in the header
678              (even when an 'icone image sequence' is announced by the 
679         element (0x0088,0x0200), but there is NO icone at all ...
680         
681      * gdcmHeader sometimes Image Location value doesn't follow  
682              the supposed processor endianity (see gdcmData/cr172241.dcm).
683              Fixed
684
685      * gdcmHeader add the method
686              IterHT  GetHeaderEntrySameNumber(grPixel,numPixel);
687         to get *all* the Header Entries with the same tag.
688         GetHeaderEntrySameName is probabely *useless* 
689         (no meaning : Name is *not* an identifier within the Dictionnary)
690
691 2004-01-26 Benoit Regrain
692      * Bug fix in the print of hexadecimal representations. Remove long fields 
693        in the print and add a third level of print to print them
694
695 2004-01-23 Benoit Regrain
696      * Bug fix on field having a VR = 'UI'. Assume that is a string field
697      * Bug fix on test suite after remove the strip made on not string fields
698      * Split the IsReadable method between gdcmParser which test that the file
699        is dicom and gdcmHeader which test that it's an image file
700
701 2004-01-22 Benoit Regrain
702      * DicomDir : clean code, add methods, set variables in protected or private
703      * gdcmUtil : bug fix for the clean string method
704
705 2004-01-19 Benoit Regrain
706      * Add the use of shadow dictionaries
707      * bug fix and coding style
708
709 2004-01-19 Benoit Regrain
710      * src/gdcmFile.cxx : bug fix concerning the close of file
711      * src/gdcmParser.[h|cxx] : remove obvious Pub informations
712      * Add the update of header entries using the shadow library
713
714 2004-01-19 Benoit Regrain
715      * removal of file gdcmHeader2.cxx
716      * split class gdcmHeader into gdcmParser and gdcmHeader, with gdcmHeader
717        inheriting from gdcmParser. This split is to prepare the integration
718        of dicom dir parsing
719      * bug fix under python
720
721 2004-01-16 Jean-Pierre Roux
722     * REM removal of class gdcmHeaderEntrySet
723     * REM removal of files gdcmHeaderEntrySet.cxx, gdcmHeaderEntrySet.h
724     * ADD add file gdcmHeader2.cxx 
725     * ADD add method gdcmHeader::SetPrintLevel (for PrintHeader)
726
727 2004-01-15 Benoit Regrain
728      * src/gdcmDicSet.[h|cxx] : add virtual entries to have a reference of
729        entries created while parsing the header. Thus, they will be destroyed
730        when the gdcmDictSet will be destroyed
731      * src/gdcmHeader.cxx, gdcmHeaderEntrySet.cxx : uses virtual entries of
732        gdcmDictSet
733
734 2004-01-15 Benoit Regrain
735      * vtk/vtkGdcmReader.cxx : bug fix : before, with python only, the program
736        made a fatal error because of the memory release at the end of program.
737        The problem was in vtkGdcmReader::ExecuteData where we were allocate
738        some memory and vtk seems to have some problems with that.
739      * src/gdcmHeaderEntrySet.cxx : bug fix for std lib and cout
740
741 2004-01-14 Benoit Regrain
742      * src/gdcmHeaderEntry.[h|cxx] : gdcmElValue -> gdcmHeaderEntry
743      * src/gdcmHeaderEntrySet.[h|cxx] : gdcmElValSet -> gdcmHeaderEntrySet
744      * src/*.[h|cxx] : make changes due to class name changes
745      * gdcmPython/demo/*.py : bug fix due to method names
746
747 2004-01-13 Benoit Regrain
748      * src/*.[h|cxx] : coding style
749      * vtk/*.[h|cxx] : coding style
750
751 2004-01-13 Benoit Regrain
752      * gdcmPython/testSuite.py : test the readable flag of file for tests
753      * src/gdcmDict.cxx, gdcmElValSet.cxx : bug fix under windows for prints.
754        It's lied to the stl compilation by MSVC (windows, always windows...)
755      * src/gdcmIdo.h, gdcmHeaderIdo.cxx : remove the Ido unused files
756
757 2004-01-12 Benoit Regrain
758      * src/*.h : add comments
759      * src/gdcmDictSet.h : set the method BuildDictPath in public
760      * src/gdcmTS.cxx, gdcmVR.cxx : use now a dictionnary file other than to be
761        directly setted in the source code
762      * Dicts/dicomTS.dic, dicomVR.dic : 2 new dictionnary files loaded by
763        gdcmTS and gdcmVR
764
765 2004-01-09 Benoit Regrain
766      * gdcmPython/gdcmVersion.py : add a gdcmVERSION variable information
767      * setup.py : use a reference to gdcmVERSION
768
769 2004-01-07 Benoit Regrain
770      * Modification to compile with the distutils.
771      * Bug fix in code
772
773 2003-12-10 Benoit Regrain
774      * gdcmHeader is now aggregating gdcmFile, and not derived into. Thus, we
775        can use a gdcmHeaderHelper to load datas
776      * gdcmPython/testSuite.py : make the testSuite compliant with modifications
777        made in the source code
778
779 2003-12-10 Benoit Regrain
780      * Update Windows projects and .cvsignore files
781
782 2003-11-12 Jean-Pierre Roux
783      * ENH gdcmHeader constructor has one more parameter (default value : false)
784            that allows the user to 'go inside' the SeQuences only
785            if he wants to.
786            gdcmElValSet:Print takes it into account
787
788 2003-11-12  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
789      * ENH: Update gdcmPython/CMakeLists
790      * FIX: (gdcmHeaderHelper) GetRescale and GetSlope
791      * FIX: (gdcmElValSet) char 'tag' was overiding private members (VC++)
792
793 2003-11-10 Jean-Pierre Roux
794       * FIX : gdcmHeader::LoadElements is now based
795              on the ListTag listElem member,
796              not longer on the TagElValueHT tagHt member
797       * ENH : PrintPubElVal shows (temporarily) both results,
798              with the tagHt member and the listElem member.
799              (it's easier to 'see' the problems when using Printheader)
800
801       * FIX : old private member LgrElem is now splitted into
802              ReadLength   : Length actually found on disk (updated only
803                             if bug fixing is necessary), for internal
804                             use only
805              UsableLength : Updated by FixFoundLength, to fix a bug
806                             or to allow Parser going on.
807              Will allow to re-write a kosher header when a SeQuence
808              with a length (not 0000) is found
809       Warning : gdcmFile::Write still uses the TagHt (not ListElem)
810                 because gdcmElValSet::Add does not update ListElem
811                 (to be written)
812
813 2003-11-07 Jean-Pierre Roux
814      * FIX misstyping in Transfert Syntax name table
815      * ENH gdcmHeader::FixFoundLength now allow to 'go inside' tge SeQuences
816           when they have an actual length (not 0000 nor FFFFF)
817      (Nobody should care of it, but DICOMDIR explorers)
818
819 2003-11-06  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
820      * ENH: vtkgdcmViewer now works with LUT dicom (OT-PAL-face ...)
821
822 2003-11-05  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
823      * ENH: vtkGdcmReader now supports LUT !
824           (vtkgdcmViewer for now is not able to use them though)
825
826 2003-11-05 Jean-Pierre Roux
827      * in testSuite.py : new files names for checking the package
828      * FIX : Forgot to commit gdcmFile::GetImageDataSizeRaw();
829              that returns the pixel area size to the *aware* (vtk) user
830              that DOESN'T want to turn the PALETTE COLOR image into an RGB image
831
832 2003-11-05 Benoit Regrain
833      * in testSuite.py : Modify the rules for checking the paths
834                        : Explicit error messages
835      * in __init__.py  : Related modif
836
837 2003-11-03 Jean-Pierre Roux
838      * add gdcmHeaderHelper::GetNumberOfScalarComponentsRaw()
839            to be used by aware (vtk) users that want to manage
840            LUT (and no to turn the PALETTE image into an RGB pixels one)
841      * GetPixelType now returns 8U for 24 Bits images
842                     (vtkGdcmReader compliant)           
843       
844 2003-10-31 Jean-Pierre Roux
845      * Removal of *all* gdcmData images and add them again
846        in order to loose the 'history' of un-anonymised images
847        
848 2003-10-31 Jean-Pierre Roux
849      * RMV : removal of useless jBitsInJsample.h 
850            for both 8 and 12 Bits JPEG Lossy Libraries
851
852 2003-10-31 Jean-Pierre Roux
853      * ENH : Add the functions gdcmFile::GetImageDataRaw 
854                                gdcmFile::GetImageDataIntoVectorRaw
855              that act as GetImageData and GetImageDataIntoVector
856              except the making of an RGB Plane from Gray Plane + LUT
857              Intended to aware (vtk) users who know how to manage
858              such an image :
859              After gdcmHeader :
860               GetLUTRGBA return a R,G,B,A LUT if any
861               lgrTotaleRaw gives the 'Raw' length
862               GetImageDataRaw returns the gray Plane
863      * FIX : no more dirty trick for 'Segmented xxx Palette Color Lookup' images
864              (They stay Grey, just like with other Dicom viewers :-(
865
866 2003-10-30 Jean-Pierre Roux
867      * FIX : a VC++ intended syntax modif broke the 12/12 Bytes expanding
868              
869 2003-10-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
870      * ENH: Can be used like this '$vtkgdcmViewer *.dcm' with *.dcm 
871            being coherents dicom files.
872      
873 2003-10-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
874      * FIX: DOH ! Forgot about windo$e users, they couldn't read lossless jpeg,
875            from medcon lib !
876      * ENH: Turn it into DOS file type to match libgdcmijpeg8.dsp file type 
877      * ENH: Two steps is necessary to please VC++ compiler...
878      * FIX: DOH ! libgdcmijpg8 -> libgdcmljpeg
879      * ENH: Add include dir to medcon lib
880      * FIX: only one function is being exported for now ! 
881            You should use GLOBAL(return type) see ljpg/jpeg.h for more info
882             
883 2003-10-29 Jean-Pierre Roux
884       * adding  gdcmHeader::GetLUTRGBA
885         returns a 4 * 256 Bytes Reg/Green/Blue/Alpha vtk compliant LUT
886           --> Mathieu, the modif u're waiting for is not yet committed
887       * removal of now useless GetLUTRed,GetLUTGreen,GetLUTBlue,GetLUTRGB
888
889 2003-10-27 Jean-Pierre Roux
890       * adding some xmedcon breaker files (courtesy of Loïc Boussel)
891         00191113.dcm DermaColorLossLess.dcm
892         MxTwinLossLess.dcm RadBWLossLess.dcm
893       * ENH: For version prior to vtkImageViewer2 -r 1.19
894       * FIX: avoid pb with xmedcon-breaker CT McTwin Elscint images
895
896 2003-10-27  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
897       * Removal of ido stuff in CMakeLists.txt
898                                                
899 2003-10-24  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
900       * ENH: vtkGdcmReader.cxx can now read multiframe dicom
901       * FIX: remove a call to ->Modified ... see comments
902       * FIX: vtkgdcmViewer.cxx was writting ASCII file...this is so slooooow !
903       
904 2003-10-23  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
905       * FIX: Problem with path for libvtkgdcmPython
906       * ENH: Try adding a search script for python site-package
907       * RMV: Remove some file from medcon lib that are not necessary
908       * FIX: gdcm/Makefile.am fix for generating ljpg medcon
909       * ENH: CMakeLists.txt now generate 'pygdcm.so' instead of 'libpygdcm.so'
910       * FIX: More pragma disable fro VC++, 
911              I don't think I break something as it is also disable in VTK/ITK.
912         But it fasten debug compilation time.
913             
914 2003-10-23 Jean-Pierre Roux
915       * gdcm now deals with 16 Bits Run Length Encoded images
916         (they are compressed as 2 planes images, 
917          one for the high Bytes, the other for low Bytes)
918
919 2003-10-22 Jean-Pierre Roux
920       * Now CheckRead takes into account :
921          - the bugged 'Leonardo' Siemens images
922          - the XA images, sent thru the burning VPRO station
923       * add I9000001.dcm, a GE dlx XA image, thru the VEPRO burning station
924        (breaks DicomWorks)
925
926 2003-10-22  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
927       * FIX: When copying a Makefile.am to CMakeLists.txt 
928              one should remove the '\'
929         
930 2003-10-22 Jean-Pierre Roux
931       * in gdcmData adding a bugged 'Leonardo' Siemens image 
932         (wrong lengths in header)
933         OK with gdcm, KO with the other viewers :-)
934       * add a GE dlx XA image, thru the VEPRO burning station
935         (breaks DicomWorks)
936
937 2003-10-21 Jean-Pierre Roux
938       * in gdcmData add the checkvtkgdcmViewer.sh shell script 
939         for a brutal checking of vtkgdcmViewer compliance
940
941 2003-10-21 Jean-Pierre Roux
942       * add the files for 'xmedcon' Jpeg Lossless library
943       * call of 'xmedcom' Jpeg Lossles libray (instead of the old LibIDO one)
944
945 2003-10-21 Jean-Pierre Roux
946       * 'Compacted Files' (12 Bits Allocate, 12 Bits Stored) are now dealt with
947      
948 2003-10-21 Jean-Pierre Roux
949       * garbage Siemens 'Leonardo' images dealt with
950         (the patch is easy to remove)
951       * cosmetic changes to avoid warnings
952       
953 2003-10-20  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
954       * ENH: vtkgdcmViewer now autoscale color/window level on start-up, 
955         no need to press 'r' now.
956    
957 2003-10-20  Jean-Pierre Roux
958       * upgrade of checkRead.sh checkWrite.sh according
959         to new Jpeg Lossless decompressor
960       * add US.3405.1.dcm, a genuine RGB medical file ...
961       * add gdcm-ACR-LibIDO.acr, unnormalized Rectangular LibIDO format image
962       * add CLIP0001-Sequoia-U11.dcm, US 'Clip', from SEQUOIA machine,
963                                                   UNIT 11, Hop Cardio              
964 2003-10-15  Jean-Pierre Roux
965       * general anonymisation in gdcmData
966       * adding the 'color files' from
967         http://www.leadtools.com/SDK/Medical/DICOM/ltdc19.htm
968       * adding some well knowed bugged-header images
969       * adding checkRead.sk, checkReadColor.sh, checkWrite.sh,
970         waiting for their inclusion in Python testsuite
971
972 2003-10-15  Jean-Pierre Roux
973     * gdcmHeader::gdcmHeader(const char *InFilename, bool exception_on_error)
974       no longer seg faults when file is not found
975
976 2003-10-14  Jean-Pierre Roux
977      * Emprovement of reading for Dicom encapsulated Jpeg LossLess 
978        MultiFrame images
979
980 2003-10-14  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
981      * TODO: *.in file to genereate a UseGDCM later
982
983 2003-10-14  Jean-Pierre Roux
984      * Some supposed-to-be Dicom Images have no preamble.
985         OpenFile takes it into account
986      * Jpeg LossLess 24 Bits images doesn't break any longer gdcm
987      * Missing elements added in dicomV3.dic
988       (just to be affraid : have a look at
989        ftp://medical.nema.org/medical/dicom/2003/01v03dif/01v03_06.pdf
990        and do it again next year ;->
991
992 2003-10-13  Jean-Pierre Roux
993      * According to PS 3.3-2003 C.11.1.1.2 p 619, when each pixel of 
994        a PALETTE COLOR is stored on 2 Bytes, theese 2 Bytes must be equal.
995        But there are NOT. It's fixed !
996        
997 2003-10-13  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
998      * FIX: "jpeglib.h" was not found on VC++
999      * FIX: vtkgdcm was not being installed 
1000          
1001 2003-10-10  Jean-Pierre Roux
1002      * ENH : OpenFile closes the file if it *really* doesn't look like
1003              an ACR-NEMA / DICOM one.
1004      * FIX : testWrite no longer writes an empty file if the source file     
1005              is not gdcm Readable
1006      * ENH : One more JPEG LossLess type "JPEG Baseline (Process 14)" 
1007              is now decoded.
1008         
1009 2003-10-10  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1010      * FIX: CMake generate now documentation
1011      * ENH: out of source doc build !
1012      * ENH: Generate both user and dev documentation
1013      * ENH: Should work on windows too
1014      * ENH: Only one doxygen config.in file is needed 
1015      * FIX: make install should be ok now on Ã¹nix plateform
1016      * FIX: PATH to dictionary was wrong (missing /)
1017      * ENH: OpenFile, return true if the file looks like an ACR or DICOM file 
1018                      
1019 2003-10-09  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1020      * vtkGdcmReader is now able to read rgb dicom file.
1021      * src/gdcmHeaderHelper : GetNumberOfScalarComponents()
1022      * added a gdcmViewer to vtk test, use mouse to control 
1023         window level & window width
1024
1025 2003-10-09  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1026      * CMake-ification of gdcm, we have now two build system
1027      * FIX: on cygwin Wsock32 doesn't exist
1028      * FIX: force jpeg dir to the local one (gdcm/src/jpeg)
1029      
1030 2003-10-06  Emanuel Ollart
1031      * FIX : compilation process wad broken.
1032              Changed gdcmViewer_sources to vtkgdcmViewer_sources
1033         
1034 2003-10-06  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1035      * change gdcmViewer -> vtkgdcmViewer
1036      * change GetXSpacing and GetYSpacing "%f\\%" is parsed backward
1037      
1038 2003-10-06  Jean-Pierre Roux
1039      * FIX :A few nasty patches to allow the reading of a lot of nasty images
1040            ( e.g : well known GE images with a wrong elem length,
1041                  : Philips MRI Images with a wrong Huffman table)
1042       * still to be done : allow the reading of bugged LEONARDO Siemens images
1043
1044 2003-10-03 Jean-Pierre Roux
1045       * Odd length strings are padded with '\0' (not with spaces, 
1046         to remain compliant with already defined strings, 
1047         like Transfert Syntax UID and others)
1048
1049 2003-10-03 Jean-Pierre Roux
1050       * ENH :gdcmHeaderHelper::GetNumberOfScalarComponents() added, 
1051              to allow displaying RGB images (not only by affim ;-)
1052         
1053 2003-10-03  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1054       * vtkGdcmReader is now able to read rgb dicom file.
1055       * src/gdcmHeaderHelper : GetNumberOfScalarComponents()
1056
1057 2003-10-03 Jean-Pierre Roux
1058       * A few nasty patches to allow the reading of a lot of nasty images
1059         ( e.g : well known GE images with a wrong elem length,
1060               : Philips MRI Images with a wrong Huffman table)
1061       * still to be done : allow the reading of bugged LEONARDO Siemens images
1062
1063 2003-10-03 Jean-Pierre Roux
1064       * One more JPEG LossLess type "JPEG Baseline (Process 14)" is now decoded.
1065
1066 2003-10-03 Jean-Pierre Roux
1067       * gdcmHeaderHelper::GetNumberOfScalarComponents() added, 
1068         to allow displaying RGB images (not only by affim ;-)
1069
1070 2003-10-03 Jean-Pierre Roux
1071       * gdcmFile::GetImageDataIntoVector now
1072          - deals with MultiFrames MultiFragments Run Length Encoded files
1073          - deals with YcBcR (YBR_FULL) files
1074          - deals with YBR_YBR_FULL_422 files (they work as RBG files ?!?)
1075           WARNING : nothing was checked for YBR_PARTIAL_422, YBR_ICT, 
1076                                             YBR_RCT files.
1077           (no sample found :-(
1078
1079 2003-10-02  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1080       * src/*.cxx removed pragma thingies to src/gdcmCommon.h
1081         Two reasons: - clear things
1082                      - third parties acces gdcm through header files, so won't
1083                        suffer anymore VC++ complains
1084
1085 2003-09-30  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1086       * add argv[1] in testvtkGdcmReader.cxx
1087       * removed leaks
1088
1089 2003-09-24 Jean-Pierre Roux
1090       * The lines are now eigthy characters long.for 
1091         gdcmHeader.cxx gdcmHeaderHelper.cxx gdcmParse.cxx 
1092
1093 2003-09-22  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1094       * src/gdcmUtil.[cxx|h] : change the _CreateCleanString return value from
1095         char* to std::string. Thus, the use of strdup becomes useless. (see
1096         previous commis of Malaterre)
1097       * src/gdcmElValSet.cxx : reuse commented call to _CreateCleanString like
1098         before the last Malaterre's commit.
1099
1100 2003-09-19  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1101       * This commit should fix the Debug building under VC++, the problem
1102         was mainly a mixture of debug and release lib being loaded at startup.
1103       * I also remove a depency to a specific C function: strdup. Because I had
1104         to force the link to msvcrtd (whereas strdup is in libc).
1105
1106 2003-09-16  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1107       * "gdcm::Unfound" string changed to a constant variable (GDCM_UNFOUND)
1108         located in the gdcmCommon.h file. All use of reference of tha has been
1109         changed to now use the variable GDCM_UNFOUND.
1110
1111 2003-09-16  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1112       * Cosmetic changes:
1113         - gdcmPython/testSuite.py adapted to the JPR updated Dicts/dicomV3.dic
1114           Dicom dictionary. The test suite can now be run again. Note:
1115           I'm note very happy with the " (RET)" changes. I believe this
1116           RETAINED comment should be dropped when parsing the dictionary.
1117         - PACKAGER corrected
1118         - DEVELOPPER added.
1119         - AUTHORS updated and now in alphabetical order
1120       * Makefile.am now exports gdcm.dsw for Windoze users.
1121
1122 2003-09-11  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1123       * cygwin complains about missing std:: in subdir Test/
1124
1125 2003-09-10  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1126       * remove some methods that are now in gdcmHeaderHelper
1127
1128 2003-09-10  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1129       * vtkGdcmReader set spacing and origin correctly
1130
1131 2003-09-09  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1132       * Fix a few delete/delete[] mismatch
1133
1134 2003-09-08  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1135       * src/gdcmHeaderHelper.[h cxx]: added new class that provide an
1136         interpretation to data given by gdcmHeader. For instance there are
1137         heuristics to get informations (look at different places).
1138       * it also include a specific class: gdcmSerieHeaderHelper devoted to
1139         sorting DICOM images based on different strategies.
1140       * modified Makefiles accordingly.
1141
1142 2003-09-05  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1143       * src/*.cxx : added pragma disable 4786/4251 to get rid of ~4300 warning
1144         when building in debug mode
1145       * vtk/win32/vtkgdcm.dsp : change /MT -> /MD and /MTd -> /MDd to match
1146         src/win32/gdcmdll.dsp
1147       * vtk/win32/vtkgdcm.dsp : added /nodefaultlib "mscvrt" for debug mode
1148
1149 2003-08-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1150       * Corrected a leak in vtkGdcmREader.cxx, the pSource was find thanks
1151             to valgrind.
1152
1153 2003-07-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1154       * src/win32/libgdcmjpeg12.dsp was not dos format
1155       * src/win32/libgdcmjpeg12.dsp : 
1156                   libgdcmijpeg12_EXPORTS -> LIBGDCMIJPEG12_EXPORTS
1157       * src/win32/gdcmdll.dsp: + /I "..\jpeg\libijg12"
1158
1159 2003-07-29 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1160       * src/gdcmHeader.h : add std:: prefix for stl elements... like others in
1161         the file
1162       * src/gdcmFile.cxx : bug fix in affectation type
1163       * src/jpeg/libijpeg12/jmorecfg12.h : export for windows modified... like
1164         in src/jpeg/libijpeg8/jmorecfg8.h (JPR : copy/paste exists !!!)
1165       * Modifs of MVSC projects to compile them. Not concerning 2 identic
1166         symbols... future problem ?
1167
1168 2003-07-29  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1169       * src/win32/libgdcmijpeg12.dsp was missing
1170       * modified gdcm.dsw accordingly
1171
1172 2003-07-28  Mathieu Malaterre  <Mathieu.Malaterre@creatis.insa-lyon.fr>
1173       * src/gdcmHeader.cxx : misplaced return 0.; for ACR/NEMA
1174
1175 2003-07-24 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1176       * src/jpeg/libijg12/.cvsignore, jconfig.* : ommited files while last
1177         commit of JPR (before his hollidays to facilitate our work).
1178       * setup.py : bug fix in code. Modifications made while the last commit
1179         of JPR. The code hasn't been tested before the commit... it's so
1180         useless to make that (for best programmer that is JPR) !!!
1181
1182 2003-07-08  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1183       * tagged the current version as Version0_3 (i.e. version 0.3)
1184
1185 2003-07-08  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1186       * vtk/testvtkGdcmReader.cxx : remove a symbol that is unused
1187       * src/jpeg/libijg8/jmorecfg.h : adding export symbol for windows
1188       * *.dsp : modifications to use new libgdcmijpeg8 library
1189       * setup.py : bug fix on VTKPATH variable
1190       * PACKAGER : adding all concerning windows
1191
1192 2003-07-07  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1193       * src/gdcmElValSet.cxx, gdcmFile.cxx: JPR bug fix, removal of
1194         garbage debug code.
1195       * TODO, vtk/vtkGdcmReader.cxx: upcoming fixes comments.
1196       * gdcmPython/testSuite.py: JPR bug fix, brutal erasement of
1197         test suite reported error.
1198       * PACKAGER file added (describes what a packager must do when
1199         packaging a new release).
1200       * MANIFEST.in, now declares jconfig.linux and jconfig.vc
1201       * configure.in: upgraded version number to 0.3.0
1202       * fixing build of rpm (through rpm -ta):
1203         - Doc/Makefile.am exports proper doxygen files
1204         - src/jpeg/libijg8/Makefile.am exports the include files.
1205
1206 2003-07-07  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1207       * vtk/vtkGdcmReader.cxx : bug fix when loading only 1 file.
1208       * src/gdcmHeader.h : formatting code
1209
1210 2003-07-07  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1211       * vtk/vtkGdcmReader.[cxx|h] : bug fix when loading only one file.
1212         We were obtaining error message from vtk. Now, creation of file list
1213         is made in an internal list to prevent this problem.
1214         Bug fix when output is empty.
1215         Bug fix in update of progress value. Previous commit for this was a bad
1216         correction.
1217       * vtk/vtkGdcmReader.h : adding comments for InternalFileNaleList variable
1218
1219 2003-07-04  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1220       * src/gdcmHeader.h : added method to get the file name
1221       * vtk/vtkGdcmReader.[cxx|h] : bug fix concerning loading of bad dicom
1222         files. Added method to remove all files on the input
1223         Added FIXME comment concerning the bad parsing of header made by
1224         ExecuteInformation method (in ExecuteData method)
1225
1226 2003-07-03  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1227       * vtk/Makefile.am: vtkGdcmReader.h should now be cleany installed
1228         when using make instal.
1229       * src/gdcmFile.cxx : bug fix under Window after JPR commit
1230         RQ : the JPR doesn't appear in the ChangeLog... normal for him
1231
1232 2003-07-03  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1233       * setup.py : adding include dir of jpeg lib to compile all sources
1234       * */Win32/*.dsp : JPR fix for windows compilation
1235
1236 2003-07-02  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1237       * src/jpeg/libijg8/jconfig.* : JPR bug fix : now compile on both
1238         linux and WINDOWS !
1239       * src/gdcmJpeg.cxx : JPR bug fix : erroneous include
1240       * src/win32/gdcmdll.dsp : JPR fix for windows compilation
1241
1242 2003-07-02  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1243       * setup.py is again effective on un*x (takes into account the
1244         addon of the jpeg library)
1245       * Doc/DoxyDevelInstal.txt added (developper's raw documentation)
1246       * Doc/Doxy* updated (includes above enhancements)
1247       * INSTALL now points to web documentation
1248
1249 2003-07-01  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1250       * src/gdcmHeader.h doesn't make unnecessary reference to
1251         gdcmUtil.h anymore.
1252       * gdcmPython/Makefile.am now avoids calling the wrappers for the
1253         clean target.
1254       * src/gdcm*.[cxx|h] :
1255         - to allow compilation with gcc 3.x
1256           -- clean up of STL usage (added explicit usage of std::)
1257           -- small fixes on exceptions.
1258           Note: linking not tested !
1259         - clean of doxygen comments to avoid warnings at documentation
1260           building stage.
1261       * vtk/vtkGdcmReader.cxx: g++ warning message clean up (platform
1262         dependent convertion).
1263
1264 2003-06-20  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1265       * Clean up of previous JPR garbage commit (not even commented in the
1266         Changelog):
1267         - Test/Makefile.am removed the reference to unexisting testTS.cxx
1268         - moved all jpeg related files from src to src/jpeg/libijg8, with
1269           addition/modification of Makefile.am and configure.in.
1270         - the testSuite is still brain damage (not guilty).
1271
1272 2003-06-02  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1273       * WrapVTK.py : modifications to get correctly vtk source files to
1274         compile
1275       * vtk/vtkGdcmReader.cxx : modification for an already existing name
1276         (FileName -> Filename)
1277
1278 2003-06-11  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1279       * vtk/vtkGdcmReader.[cxx/h]:
1280         - UpdateProgress method should now be effective
1281         - removed the limitation on having only images loaded (as opposed
1282           to volumes),
1283         - when building a stack of images/volume, a lesser number of
1284           gdcmHeader and gdcmFile instances should be used (hopefully
1285           accelerating things).
1286         - when building a stack of images/volumes, files which are not
1287           loadable (wrong path-filename, wrong permissions on existing file,
1288           or file not parsable by gdcm) are replaced with a black image
1289           in the stack (for the caller to notice the problem).
1290
1291 2003-06-03  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1292       * vtk/vtkGdcmReader.cxx: hopefully corrected Z extent.
1293
1294 2003-06-02  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1295       * vtk/vtkGdcmReader[cxx|h] : makes correct code to remove conflicts
1296         between standard library (std) and vtk library (problems are found
1297         under Windows... thanks Windows !)
1298
1299 2003-05-30  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1300       * vtk/vtkGdcmReader[cxx|h] should now be volume aware (read ready for
1301         debug stage).
1302       * gdcmPython/demo/vtkGdcmReader.py: commented lines for volume test
1303
1304 2003-05-29  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1305       * vtk/vtkGdcmReader[cxx|h] preparation addons for loading volumes.
1306
1307 2003-05-28  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1308       * When compiling with distutils (see setup.py) the C++ compiler is
1309         called with different flags than the default ones (with automake).
1310         In order to fix all those warning, I compiled gdcm with the command
1311            make 'CXXFLAGS=-Wall -Wstrict-prototypes -D__STDC_LIMIT_MACROS'
1312         and went for warning fixes:
1313         - src/gdcmHeader.cxx, Test/dcm2acr.cxx, pourFindTaggs.cxx cleaned
1314           up from unused variables.
1315         - vtk/vtkGdcmReader.cxx: potential bug fix.
1316       * src/gdcmHeader.h: Doxygen warning cleanup
1317
1318 2003-05-27  Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1319       * gdcmPython/gdcm.i:
1320         - typemaps correction to take into account the systematic replacement
1321           of "using namespace std" with std:: prefix e.g. std::list,
1322           std::string... (cf changes of 2003-05-21).
1323         - gdcmGlob global variable of type gdcmGlobal (defined in
1324           src/gdcmUtil.cxx and declared in gdcmPython/gdcm.i) is now
1325           exported to Python a as cvar.
1326       * gdcmPython/__init__.py now defines two functions GetPubDictTagNames()
1327         and GetPubDictTagNamesByCategory() as a replacement for deprecated
1328         gdcmDictSet.GetPubDictTagNames() and
1329         gdcmDictSet.GetPubDictTagNamesByCategory() class functions (i.e.
1330         C++ static methods).
1331       * gdcmPython/demo/printGroupedPublicDict.py is operational again,
1332         with the above changes.
1333
1334 2003-05-22  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1335       * setup.py, manifest.in : bug fix under linux
1336
1337 2003-05-22  Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1338       * Modification of setup.py to compile vtk part too. Then, we have 2
1339         wrappers which must work with same distutils. For that, we have a
1340         generic distutils in distusiltsWrapping.py ; with :
1341          - build_extWrap class to wrap generically all extensions,
1342          - ExtensionWrap base class for all wrapping extension that contains
1343            a wrapper
1344          - Wrapper interface which wrap sources
1345         + In WrapSwig.py  we have extension and wrapper for Swig
1346         + In WrapVTK.py  we have extension and wrapper for VTK
1347       * MANIFEST.in : modifications to consider vtk directory and new python
1348         files for compilation
1349
1350 2003-05-21  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with Benoit Regrain
1351       * Added python wrappers of vtkGdcmReader vtk class (see the
1352         source in vtk/vtkGdcmReader.cxx) :
1353         - vtk/Makefile.am now builds a library
1354         - gdcmPython/Makefile.am now builds vtkgdcmPython a second import
1355           python library (as opposed to _gdcm.so wich are the python
1356           wrappers of gdcm). vtkgdcmPython.so uses the vtk python wrappers
1357           (vtkWrapPython and vtkWrapPythonInit utility) to build vtkgdcmPython
1358           import library.
1359         - configure.in has an additional flag --enable-vtk that needs
1360           to be set to enable compilation of vtk related code, that is:
1361           + vtk/vtkGdcmReader.so and
1362           + vtk/testvtkGdcmReader C++ demo of vtk wrappers of gdcm)
1363           + gdcmPython/vtkgdcmPython.so (see above)
1364         - gdcmPython/demo/vtkGdcmDemo.py corrected (some images cannot
1365           be read when compressed or when HighBit + 1 != BitsStored),
1366         - gdcmPython/demo/vtkGdcmReader.py added. This demo illustrates
1367           the usage of the python wrapper of vtkGdcmReader vtk class.
1368       * vtk/vtkGdcmReader.cxx: bug fixed (thanks to Benoit Regrain).
1369       * src/*.[h] all occurences of stl classes are now prefixed with
1370         std::, and all occurences of "using namespace std;" where removed.
1371         This is to avoid pollution of global namespace in included files.
1372         Apparently vtk does not avoid this pitfall: when using both
1373         gdcm and vtk (as in vtk/vtkGdcmReader.cxx) this ended up in a
1374         collision of various stl members (principally cout...).
1375       * gdcmPython/testSuite.py now cleanly removes temprory generated
1376         file.
1377       * gdcmPython/gdcm.i now declares a typemap for std::string (to
1378         comply with above changes)
1379
1380 2003-05-12  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1381       * src/gdcmHeader>[h/cxx] added gdcmHeader::GetPixelSize()
1382       * vtk/vtkGdcmReader.cxx now properly inports the image in the
1383         vtk data structure (an image Flip was required).
1384       * vtk/testvtkGdcmReader.cxx refers to gdcmData subdir instead of Data.
1385       * cosmetic changes in documentation.
1386
1387 2003-05-7  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1388       * src/gdcmHeader.cxx: the constructor no longer exits when an
1389         unexisting file is given as argument.
1390       * The subdirectory Data (containing all the images used for the
1391         test suite) is not part of this repository anymore. A new module
1392         containing those images is now available at
1393           :pserver:xxx@cvs.creatis.insa-lyon.fr:2402/cvs/public
1394         with the name gdcmData.
1395         All the python scripts (including the package initialisation file
1396         gdcmPython/__init__.py) were adapated to take this change into
1397         account (basically GDCM_DATA_PATH is now GDCM_TEST_DATA_PATH).
1398
1399 2003-05-5  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1400       * vtk subdir added. Contains vtkGdcmReader.[cxx|h] a vtk class
1401         inherinting from vtkImageReader and testvtkGdcmReader.cxx a small
1402         demo of the usage of this class.
1403         Compilation of this vtk part is only done when using the --enable-vtk
1404         at configure (or autogen.sh) stage.
1405
1406 2003-04-16  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1407       * More memory link related corrections and documentation fixes.
1408         Notes on valgrind:
1409           - maximum info is obtained with a command of the form:
1410             valgrind --leak-check=yes --leak-resolution=high --num-callers=40
1411                      --show-reachable=yes PrintHeader
1412           - the remaining reachable blocks seem to come from the STL
1413             allocation scheme through the usage of map and list. It looks
1414             like this memory cannot be freed but it is not a memory leak
1415             (in fact further invocation to the STL would recollect the
1416              unused memory allthough it cannot explicitely be freed).
1417       * gdcmPython/demo/vtkGdcmDemo.py added: this is a small demo
1418         of displaying an image parsed with gdcm and displayed with VTK.
1419         Note: some images don't seem to work e.g.
1420             python vtkGdcmDemo.py  ../../Data/US-RGB-8-esopecho.dcm
1421       * src/gdcmHeader.x: dicom_vr and Dicts are not class members anymore.
1422         Allthough this weakens the semantics, it is a ditch attempt to
1423         make gdcm more thread friendly.
1424
1425 2003-04-15  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1426       * Memory link hunt (by using valgrind through the command
1427           valgrind --show-reachable=yes --leak-check=yes PrintHeader).
1428         - added src/gdcmVR.cxx gdcmVR.h that objectify the previous
1429           gdcmHeader::_dicom_vr.
1430         - gdcmHeader::InitVRDict transfered as gdcmVR::gdcmVR().
1431         - gdcmHeader::dicom_vr is now of type gdcmVR* as opposed to
1432           VRHT*.
1433         - gdcmGlobal global object contained class added (see src/gdcmUtil.x)
1434
1435 2003-04-9  Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1436       * src/Makefile.am now exports all the necessary include files at
1437         make install stage.
1438
1439 2003-04-9 JPR
1440       * UpdateGroupLength replaced by new one
1441
1442 2003-04-7 JPR
1443       * UpdateGroupLength re-written using H-Table
1444         (named UpdateGroupLengthNew untill checks are over)
1445
1446 2003-04-7 Eric Boix <Eric.Boix@creatis.insa-lyon.fr> with JPR
1447       * Data/im_00001 renamed to gdcm-MR-PHILIPS-16-Multi-Seq.dcm
1448       * gdcmPython/testSuite.py now include a test of gdcmFile::Write.
1449       * src:
1450         - gdcmHeader::GetPubElValSet removed.
1451         - gdcmElValSet::WriteDcm, WriteAcr, WriteExplVR, revamped to
1452           UpdateGroupLength, WriteElements, Write.
1453         - gdcmHeader::FileType moved to gdcmCommon.h. The enum FileType
1454           doesn't contain TrueDicom anymore since ExplicitVR and ImplicitVR
1455           carried the same semantics.
1456           - src/gdcmHeaderIdo.cxx changed accordingly.
1457         - gdcmFile::WriteBase now regroups all the codes from previous
1458           versions of WriteDcm, WriteDcmImplVR, and WriteACR.
1459         - enum FileType moved to gdcmCommon.h
1460       * src/gdcmHeader.cxx AddDefault trashed
1461       * gdcmGetXSize added
1462       * getimageDataSize now calls gdcmGetXSize
1463       * Test/*.cxx changed to agree with above changes
1464
1465 2003-03-31 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1466       * src/gdcmHeader.h: LoadElements() is not a public method anymore
1467         (to avoid double call by end user).
1468       * Test/*.cxx LoadElements() doesn't need to be called explicitely
1469         by end user, since gdcmHeader::gdcmHeader now handles it.
1470
1471 2003-03-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1472       * gdcm/Doc many doxygen changes:
1473         - Doxyfile now has two different versions, DoxyfileUsers that generates
1474           the html.users end users oriented documentation and
1475           DoxyfileDeveloppers that generates the html.developper developper
1476           oriented documentation.
1477         - README changed accordingly
1478         - requirement.txt removed (old design info moved to TODO).
1479         - Additional files DoxyInstallation.txt, DoxyIntroduction.txt,
1480           DoxyMainPage.txt, DoxyPython.txt provide more information.
1481         - Note: the website http://www.creatis.insa-lyon.fr/Public/Gdcm/ can now
1482           be updated by simply regenerating the docs with doxygen and copying
1483           html.developper and html.users to tux:/home/httpd/html/Public/Gdcm
1484       * src/gdcmElValSet.cxx: stl <map>.count() can only return 0 or 1. Hence
1485         all the tests in the form "if (<map>.count() >1)" were removed.
1486       * src/gdcmFile.cxx: cosmetic changes to avoid messages of doxygen about
1487         ill-formed documentation sections.
1488       * src/gdcmHeader.cxx: ditto
1489
1490 2003-03-27 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1491       * setup.py fixed for un*x (needed macro for stdint.h)
1492       * Test/test.cxx renamed to PrintHeader.cxx to avoid collision on
1493         un*ces with sh-utils test utility.
1494       * gdcmPython/demo/test.py renamed to PrintHeader.py
1495       * gdcmPython/demo/ReorganiseFiles.py new demo script added.
1496       * gdcmPython/win32/gdcmpycomplet.dsp renamed to gdcmpyembedded.dsp.
1497       * gdcmPython/win32/gdcmpy.dsp trashed away (brain damaged).
1498       * src/gdcm*.cxx JPR's bad inclusion fixed.
1499
1500 2003-03-26 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1501       * src/gdcmHeader[h, cxx] gdcmHeader now has an IsReadable predicate.
1502       * gdcmPython/demo/test.py changed accordingly.
1503
1504 2003-03-25 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1505       * gdcmPython/Makefile.am fixed linking against libstdc++
1506       * gdcmPython/_gdcm.so symbolic link to gdcmPython/.libs/pygdcm.so added.
1507       * Swig subdir (historical tests of swig version 1.3.17++) removed
1508       * Test/testChangeEntete.cxx some lines commented out in order to make
1509         compilation work.
1510       * src/gdcmHeader.cxx cleaned up wild JPR's dirty kludge.
1511       * src/gdcmElValSet.cxx cleaned up frog's forgotten debug message
1512
1513 2003-03-24 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1514       * src/gdcmHeader.cxx gdcmHeader::gdcmHeader now calls LoadElements(),
1515         hence the user doesn't need this explicit call.
1516         - gdcmPython/testSuite.py, gdcmPython/demo/*.py changed accordingly
1517           i.e. LoadElements() call removed.
1518       * src/gdcmCommon.h now defines UINT32_MAX (see stdint.h).
1519         - src/Makefile.am declares the proper flag for g++.
1520       * src/gdcmElValSet.h added gdcmElValSet::GenerateFreeTagKeyInGroup
1521         for adding user defined new tags.
1522         - src/gdcmHeader.cxx gdcmHeader::NewManualElValToPubDict added.
1523         - src/gdcmHeader.cxx gdcmHeader::AddAndDefaultElements now
1524           cleanly adds some gdcm added tags (like gdcmXSize, gdcmYSize...)
1525
1526 2003-03-17 Fabrice Bellet <Fabrice.Bellet@creatis.insa-lyon.fr>
1527       * Makefile.am, acinclude.m4, configure.in, python.m4, Dicts/Makefile.am,
1528         Doc/Makefile.am, Test/Makefile.am, gdcmPython/Makefile.am,
1529         src/Makefile.am : the project should properly compile and install
1530         with the autotools, included the python wrappers part.
1531       * gdcm.spec.in : added a spec file for RPM packaging.
1532
1533 2003-03-14 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1534       * src/gdcmUtils.cxx : redifinition of defaults parameters in code
1535
1536 2003-03-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1537       * gdcmPython/__init__.py fix of GDCM_DICT_PATH which was not
1538         to exported to the environement (see gdcmPython/testSuite.py
1539         for usage).
1540       * src/gdcmElValSet.[cxx/h], gdcmElValue.[cxx/h], gdcmFile.[cxx/h],
1541         gdcmHeader.[cxx/h]: ElValSet class renamed to gdcmElValSet, and
1542         ElValue class renamed to gdcmElValue for obvious consistency reasons.
1543       * src/gdcmElValSet.cxx, src/gdcmUtil.[cxx-h] Tokenize utility function
1544         moved away from gdcmElValSet.cxx to gdcmUtil.cxx.
1545
1546 2003-03-10 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1547       * gdcmPython/__init__.py doesn't crash anymore when running in
1548         in InstallMode or PreInstallMode but with an environement given
1549         value of GDCM_DICT_PATH.
1550       * src/gdcmDictSet.[cxx/h] coding style.
1551
1552 2003-03-06 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1553       * src/gdcmHeader.h and gdcmHeader.cxx Coding style + doxigenation.
1554       * src/gdcm.h general comments moved to TODO, and README
1555       * src/gdcm.h should now be seen as a user commodity (including it
1556         should suffice to fully use gdcm). It is nowhere including within
1557         any of the kernel files src/*.cxx and src/*.h.
1558
1559 2003-03-05 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1560       * src/gdcm.h splitted in gdcmCommon.h, gdcmDict.h, gdcmDictEntry.h,
1561         gdcmDictSet.h, gdcmElValSet.h, gdcmElValue.h, gdcmFile.h,
1562         gdcmHeader.h
1563       * src/gdcm*.cxx only include their corresponding include file
1564         (as opposed to gdcm.h)
1565       * gdcmPython/gdcm.i changed accordingly
1566       * Test/Makefile.am corrected and added NEWS, AUTHORS in order for
1567         the autogen.sh generated "make snapshot" command to work.
1568       * autogen.sh removed history related references to crea package.
1569
1570 2003-03-04 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1571       * distutilsSwigCPlusPlus.py work around some swig portability
1572         bug.
1573
1574 2003-03-03 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1575       * Eventually, python/gdcmPython was renamed to gdcmPython. This
1576         was done in a last ditch attempt to get setup.py _really_
1577         operationnal. The python/gdcmPython layaout add the advantage
1578         of hidding away the python related distutils specific files
1579         (MANIFEST.in, setup.py, distutils*.py...) from the main directory.
1580         Alas, the src directory was out of scope (i.e. it's relative
1581         position to setup.py was ../src) which made things impossible to
1582         handle (see previous version of python/setup.py). Crossing fingers...
1583
1584 2003-02-20 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1585       * python/setup.py now works on Un*x. (harder than I thougth)
1586       * python/distutilsSwigCPlusPlus.py can now have include files
1587         among the list of sources.
1588
1589 2003-02-20 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1590       * src/gdcmHeader.cxx : bug fix - opening dicom file in binary !!!
1591       * modifications in MSVC projects
1592
1593 2003-02-19 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1594       * As stated by the first lines of Test/ExceptionAndPython/README, it
1595         looks like we can move back to original usage of exception within
1596         src/gdcm* and hence remove the errno stuff that was introduced
1597         as a quick and dirty fixture of this problem (added to the TODO).
1598       * Doc/Doxyfile configuration file for Doxygen and corresponding
1599         README file for usage added.
1600       * Test/testWrite.cxx added. This new test comes from a split of
1601         test.cxx that is now reverted to its original purpous i.e.
1602         testing the proper parsing of a Dicom related file.
1603         testWrite.cxx concentrates on testing the IO part of gdcm.
1604       * Test/bug1.cxx (containing a bug on WIn32) added.
1605       * src/gdcm.h, gdcmHeader.cxx, gdcmDictSet.cxx:
1606         - gdcmHeader::GetPubTagNames and  gdcmHeader::GetPubTagNamesByCategory
1607           whose purpose is to publish the content of the TagNames of the
1608           Dicom public dictionnary were not accessible without an
1609           instance of class gdcmHeader.
1610         - those methods are now static methods of gdcmDictSet and hence
1611           require no instances at all to be invocated.
1612         - within gdcmDictSet this change required to change some method
1613           to class methods (i.e. are now static) among which SetDictPath
1614           (renamed to BuildDictPath) and LoadDefaultPubDict.
1615       * python/gdcmPython/demo/printGroupedPublicDict.py changed to illustrate
1616         the above changes by calling the new method classes of gdcmDictSet.
1617       * python/gdcmPython/__init__.py now exposes gdcm.gdcmDictSet for
1618         the above to be effective.
1619       * python/gdcmPython: in order to wrap properly the above changes
1620         for Python, swig version now needs to be > 1.3.17.
1621       * python/gdcmPython/Makefile fixed to adapt itself to new
1622         configure/make shema introduced by Johan Montagnat (thanks for the
1623         contribution). Alas this Makefile cannot be turned into a proper
1624         Makefile.am without some heavy changes in the configure.in
1625         (for python dectection).
1626       * python/gdcmPython/gdcm.i: the out typemap map<string, list<string>>*
1627         now avoids publishing the empty entries.
1628
1629 2003-02-13 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1630       * python/setup.py : bug fix concerning install under windows
1631         ExtraPath reused :-P
1632       * gdcm.dsw : bug fix concerning path for libraries for python !!!
1633
1634 2003-02-13 Benoit Regrain <Benoit.Regrain@creatis.insa-lyon.fr>
1635       * Dicts/dicomV3.dic : remove double spaces !!!
1636       * src/gdcmElValSet.cxx : bug fix concerning windows compiler
1637       * python/gdcmPython/win32/gdcmpycomplet.dsp : bug fix concerning paths
1638         and links
1639
1640 2003-01-28 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1641       * src/gdcmHeader.cxx added a post header parsing AddAndDefaultElements
1642         method. Doxygenation.
1643       * src/gdcm.h clean up of JPR spurious comments.
1644
1645 2003-01-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1646       * python/distutilsSwigCPlusPlus.py now properly collects the
1647         shadow classes generated by "swig -c++" (gdcm.py in our case)
1648         when using "python setup.py install".
1649       * python/gdcmPython/__init__.py imports gdcm.py and only manually
1650         reexports the working classes.
1651       * src/gdcmHeader.cxx all the try/catch/throw calls were replaced
1652         by the classical C errno scheme. This is to prevent an obscure
1653         behavior of the python wrappers when importing wxPython.wx prior
1654         to gdcmPython (which ended up in an abort call). An illustration
1655         of this oddity can be found in the Test/ExceptionAndPython
1656         subdir (see the README file). This problem probably due to
1657         an combination of g++ and dynamic loading.
1658       * added Test/ExceptionAndPython (see above)
1659
1660 2003-01-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1661       * Changed the layout of the python part to avoid bloating main
1662         directory with setup.py, distutilsSwigCPlusPlus.py, MANIFEST.in
1663         i.e. the distutils arsenal. All the python related stuff is
1664         again in a python subdir, but the package itself is now in
1665         python/gdcmPython.
1666       * setup.py was cleaned up:
1667         - pythonIncludePath removed
1668         - python setup.py bdist target is now functional.
1669       * gdcmPython/__init__.py doesn't export FileName any more (to avoid
1670         collision with other packages). gdcmPython/demo/*.py changed
1671         accordingly.
1672
1673 2003-01-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1674       * python subdir moved to gdcmPython (preparation of distutils packaging).
1675       * gdcmPython/setup.py and distutilsSwigCPlusPlus.py added. The
1676         distutils installer is operational.
1677       * - gdcmPython/__init__.py now properly loads the swig generated
1678           shadow classes (from gdcm.py).
1679         - gdcmPython/demo/*.py changed to import the package gdcmPython
1680           instead of gdcmPython/demo/load.py.
1681         - gdcmPython/testSuite.py changed to import the package gdcmPython.
1682
1683 2002-12-16 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1684       * src/gdcm.h, src/gdcmHeader.cxx: added GetPubTagNames() resp.
1685         GetPubTagNamesByCategory() to gdcmHeader that return a list of the
1686         entries within the associated public Dicom dictionary resp. the same
1687         information but sorted by the fourth field (PAT, IMG, DIR) of the
1688         dictionary.
1689         - Dicts/dicomV3.dic Entries which had and unspecified fourth field
1690           are now in the "???" group.
1691         - python/gdcm.i changed accordingly,
1692         - python/demo/printGroupedPublicDict.py added, that gives an example
1693           of the above new functionalities in Python.
1694
1695 2002-12-11 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1696       * src/gdcm.h, gdcmHeader.cxx:
1697         - historic references to glib's g_malloc and g_free (#defined)
1698           were definitively removed.
1699         - gdcm.h: cosmetic changes (part of comments moved to Doc/requirements)
1700       * src/gdcmElValSet.cxx:
1701         - GetElement(guint32, guint32) renamed to GetElementByNumber.
1702         - GetElValue(guint32, guint32) renamed to GetElValueByNumber.
1703         - GetElValue(string) renamed to GetElValueByName.
1704         - Added GetElementByName(string).
1705       * src/gdcmHeader.cxx: added
1706         - GetPubElValRepByNumber(guint16, guint16)
1707         - GetPubElValRepByName(string)
1708         - GetShaElValRepByNumber(guint16, guint16)
1709         - GetShaElValRepByName(string)
1710         - GetShaElValByNumber(guint16, guint16)
1711         - GetShaElValRepByName(string)
1712         - GetElValRepByNumber(guint16, guint16)
1713         - GetElValRepByName(string)
1714         - GetElValByNumber(guint16, guint16)
1715         - GetElValRepByName(string)
1716       * Doc/requirements.txt added.
1717
1718 2002-12-9 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1719       * Test/Makefile building now depends on the one of libgdcm.so
1720       * src/gdcmHeader.cxx and gdcm.h are now OB (undefined length encoded
1721         pixel data) aware which enables finding the address (offset) of
1722         the pixel data of JPEG encoded DICOM files. This leaves only a single
1723         file in the testSuite whose pixel data address (offset) is unknown.
1724       * python/testSuite.py changed accordingly.
1725
1726 2002-12-6 Christophe Odet + Hugues Benoit-Cattin + Eric.Boix
1727       * VC++ has some strong limitations when working with the STL, as stated
1728         in http://support.microsoft.com/support/kb/articles/Q168/9/58.ASP :
1729              "Also note that some STL containers (map, set, queue, list, deque)
1730               cannot be exported. [...]
1731               Some STL classes contain nested classes. These classes can not
1732               be exported. [...]
1733               This is caused by a designed limitation that once a template
1734               class is instantiated, it can not be re-instantiated and
1735               exported."
1736         Since our usage of map<> is ubiquitous in gdcm, this "designed
1737         limitation" of VC++ is a pitfall.
1738         Hence the Python wrappers of gdcm cannot be incrementally linked
1739         against the c++ dynamic library. The dirty but only workaround is
1740         to forget about incremental link of dynamic libraries and to generate
1741         the Python wrappers library with the inclusions of the underlying C++
1742         library.
1743         The following modifications concern this matter on Win32/VC++:
1744       - wrapping python correct with standalone wrapped dll (don't use separate
1745          dll under windows !!!!)
1746       - python21_d debug mode enabled (ask Frog how to use it :-)
1747       - NO problem with having an STL member of class for example string in C++
1748         WITH THE RESTRICTION OF FORGETING ABOUT INCREMENTAL LINK.
1749       - Python test of dcmlib in Python is ok under windows on a large set
1750         (one) of image(s).
1751       * removed glib references
1752       * typedef's inserted in gdcm.i for correct swig type management
1753
1754 2002-11-27 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1755       * python/demo/*.py load.py extracted from test.py. Added explore.py
1756         that only displays required tags and testAll.py that parses all
1757         the files of the testsuite without using unittest.
1758       * python/testSuite.py other additional test on new files added.
1759       * Data/* new test files added accordingly to the testSuite.
1760       * src/gdcmHeader.cxx avoid overwriting of the dictionary when
1761         the vr in the file differs from the one of the dictionary.
1762
1763 2002-11-20 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1764       * src/gdcm.h and gdcmHeader.cxx gdcm no longer loads all the elements
1765         values, but limits itself to values which are below a user specified
1766         size (by default 1024 bytes).
1767       * python/gdcm.i : elements not loaded (because their size is above the
1768         user specified treshold) are exported with their TagKey as key of the
1769         python dictionary. This enables the testsuite to make some checks
1770         on the unloaded elements (since we have their offset and size).
1771       * python/testSuite.py
1772         - now tests for the existence and proper value of the pixel data
1773         - two new examples added.
1774       * Data/gdcm-MR-SIEMENS-16.acr[12] added.
1775
1776 2002-11-18 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1777       * src/gdcm.h and gdcmHeader.cxx are now "Big Endian transfer syntax"
1778         aware. See the strategy comments in gdcmHeader::FindeLength().
1779       * Test/test.cxx now accepts a filename as first argument.
1780       * Data/US-PAL-8-10x-echo.dcm and US-RGB-8-epicard.dcm added.
1781       * python/testSuite.py changed to integrate test on above files.
1782
1783 2002-11-15 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1784       * Dicts/dicomV3.dic removed all the trailing (RET) when the
1785         the vr was also RET.
1786       * python/testSuite.py more tests added.
1787
1788 2002-11-14 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1789       * python/testSuite.py unittest test suite added (uses Data)
1790       * Data/* dcm and acr files for the test suite.
1791       * glib dependance removed from un*x version. We now use ISO C99
1792         7.18 Integer types (see stdint.h)
1793         - python/Makefile, src/Makefile src/gdcm.h
1794       * src/ when an explicit vr (like dicom files) suddenly poped an
1795         implicit element we use to mark the underlying DictEntry of the
1796         concerned ElValue with "Implicit". This strategy was damageable
1797         too the public or provite dictionaries, since some of their vr
1798         would be changed. Since Header::FindLength heavily relies on the
1799         detection by Header::FindVR of falsely explicit elements, I
1800         added an extra ImplicitVr member to ElValue (boolean).
1801         The rest of the changes we the necessary adaptations.
1802
1803 2002-11-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1804       * src/gdcmHeader::FindLength bug fix when trapping falsely explicit
1805         VR files.
1806       * src/gdcmHeader::FindVR: hard way fix of falsely explicit vr files.
1807
1808 2002-11-8 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1809       * Adaptation for porting to VC++:
1810         - src/gdcm.h
1811           o forced to use std namespace (for string to be known)
1812           o all class use __declspec export style on WIN32
1813         - src/gdcmUtil.cxx new Exit method that wraps the exit call
1814           (in stdlib.h on Win32 but in std:: for gcc)
1815       * src/gdcmDictSet::SetDictPath adds a trailing / to environement
1816         variable GDCM_DICT_PATH.
1817       * src/gdcmHeader.cxx verbose comments made discrete.
1818
1819 2002-11-7 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1820       * python/gdcm.i: added a typemap that converts a C++ hashing table
1821         to native Python dictionary.
1822       * python/demo/test.py:
1823         - now uses the native dictionary for exploration of gdcmHeader.
1824         - takes an optional filename argument (the file to parse).
1825       * src/gdcm.h and gdcmHeader.cxx: gdcmHeader now has an accessor on
1826         PubElVals hashing table.
1827       * Dicts/dicomV3.dic removed error prone trailing spaces.
1828
1829 2002-11-6 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1830       * Python wrapping process moved away from src/Makefile to
1831         newly created python/Makefile (as well as gdcm.i)
1832       * python/demo/test.py (that mirrors Test/test.cxx) is effective.
1833       * src/gdcmHeader::FindLength only looks for current vr when necessary.
1834       * src/gdcmDictSet.cxx: the dictionnaries directory path is now imported
1835         from the environement variable GDCM_DICT_PATH (when existing).
1836       * src/gdcmDict::GetTag bug fix.
1837
1838 2002-10-31 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1839       * Straightforward temporary fixes for swig to build the python wrappers.
1840         src/Makefile now has a python working entry [by working we mean
1841         that we can import de shadow classes without errors].
1842
1843 2002-10-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1844       * hashtest.cxx removed (since allready in Test)
1845       * src/gdcmlib.h renamed to src/gdcm.h
1846       * src/dcm.i renamed to src/gdcm.i
1847       * src/Makefile prepared for python wrapping
1848
1849 2002-10-29 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1850       * src/gdcmHeader.cxx :
1851         - Parsing of header is now separated from loading of element values
1852           (see gdcmHeader::LoadElements).
1853         - general clean up of hopefully all file access (creation of
1854           ReadInt16 and ReadInt32)
1855
1856 2002-10-22 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1857       * src/gdcmHeader.cxx :
1858         - RecupLgr renamed to FindLength and cut off with new IsAnInteger
1859           method.
1860         - SetLgrElem renamed to SetLength
1861         - GetLgrElem renamed to GetLength
1862         - ~gdcmHeader() made virtual to pesky warning messages at compile.
1863       * src/gdcmElValSet.cxx fixed both GetElValue methods
1864       * Dicts/dicomV3.dic falacious entry [7fe0 0010 OT PXL Pixel Data]
1865         due to IdoDude was cleaned out.
1866
1867 2002-10-21 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1868       * src/gdcmHeader.cxx RecupLgr split in FindVR and RecupLgr. FindVR
1869         concentrates on finding the value representation (when it exists).
1870         RecupLgr now only finds the element value length, and it avoids
1871         returning the unecessary skL (skipped length).
1872         Also, offsetCourant was simply removed (with taille_fich) since
1873         it was redundant with the File position internals (by using
1874         ftell and fseek). This also made skL (see above in RecupLgr) usage
1875         jajun.
1876       * src/gdcmHeaderIdo.cxx src/gdcmIdo.h added. Those files concentrate
1877         on the libido specificities which are handled through class
1878         inheritance.
1879       * Test/implicit_vr.dcm dicom v3 in implicit value representation
1880         added.
1881
1882 2002-10-17 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1883       * Truckload of changes. Parsing of header is barely functional
1884         (see Test/test) with the standard dictionary (see Dicts/dicomV3.dic).
1885
1886 2002-10-10 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1887       * src/gdcmHeader.cxx many addons of low level methods
1888
1889 2002-10-07 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1890       * src/gdcmHeader now contains_IdDcmCheckSwap, _IdDcmRecupLgr,
1891         and _IdDcmSWAP_LONG.
1892
1893 2002-09-12 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
1894       * This corresponds to all the changes decided at the meeting of
1895         May 23 2002. Needless to say we are running late...
1896