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