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