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