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