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