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