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