]> Creatis software - gdcm.git/blob - Doc/Website/News.html
126ff1350c80b6cbe89c9953ed219dfde064bd27
[gdcm.git] / Doc / Website / News.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <HTML>
3 <HEAD>
4    <META http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
5    <TITLE>Gdcm News</TITLE>
6 </HEAD>
7
8 <BODY>
9
10 <!#######################################################################>
11 <H1>Gdcm News</a></H1>
12
13 <!#######################################################################>
14 <HR size="1"><ADDRESS style="align: right;"></ADDRESS>
15 <H2>
16    <A CLASS="anchor" NAME="NewsCurrentVersion">
17    <B>Current Version</B></A>
18       <B></B></A>
19 </H2>
20 <UL>
21    <LI>State of the art
22    <UL>    
23       <LI> Final check of the jpeg sub-library: all 'classical' jpeg
24         compressed Dicom files can be read<br>
25       <LI>All the previously gdcm-breaker images are now readable<br>
26       <LI> A huge number of memory leaks removed
27       <LI> Improvement of write process   
28    </UL>
29    <LI> New Features
30 <UL>
31    <LI>
32    <LI>
33 </UL>
34  
35    <LI> A.P.I. breaking modifications (since previous version)
36    <UL>
37       <LI> Use of <TT> namespace</TT> : all the methods formerly called
38           <TT>className::gdcmXxx()</TT> are now called <TT>className::Xxx()</TT>
39       <LI> Removal of accessors <TT>GetXxxByname</TT>, <TT>SetXxxByname</TT> 
40            and <TT>GetXxxByNumber</TT>, <TT>SetXxxByNumber</TT> 
41            replaced by <TT>GetXxx</TT>, <TT>SetXxx</TT>
42       <LI> a <TT>gdcm::Document</TT> is now specialized 
43            in <TT>gdcm::DicomDir</TT> and <TT>gdcm::File</TT>
44    </UL>
45
46    <LI> Missing features
47    <UL>
48       <LI> gdcm doesn't read yet JPEG-LS and JPEG2000 encoded files.
49       <LI> Allow user to tell <TT>gdcm::Document</TT> constructor he doesn't 
50            want to deal with <TT>SeqEntry</TT (every time it's possible)
51       <LI> Allow user to tell <TT>gdcm::Document</TT> constructor he doesn't 
52            want to deal with Shadow groups 
53       <LI> Allow user to tell the Writer he doesn't want to write down
54            <TT>SeqEntry</TT> (if any) 
55       <LI> Allow user to tell the Writer he doesn't want to write down
56            Shadow groups (if any)
57       <LI> <TT>Icon Image</TT> management (Read and Write) 
58       <LI> <TT>DICOMDIR</TT> full management (not limited to
59            <TT> PATIENT</TT>/<TT>STUDY</TT>/<TT>SERIE</TT>/<TT>IMAGE</TT>)
60       <LI> Allow user to add an Entry to the default entry list, for
61            making a <TT>DICOMDIR</TT> from a root directory
62       <LI> 16-bits-LUT full Management
63       <LI> User friendly management of <TT>Rescale Slope</TT> and
64            <TT>Rescale Intercept</TT>
65       <LI> Allow parsing the Shadow groups against a user supplied 
66            Private Dicom Dictionary (pfff!...)
67       <LI> An accurate <TT>SerieHelper</TT>
68    </UL>
69
70    <LI> Known bugs
71    <UL>
72       <LI> <TT>DocEntrySet::InsertSeqEntry</TT> never used, never checked ...
73       <LI> The difference between <TT>MONOCHROME1</TT> and <TT>MONOCHROME2</TT>
74            is not taken into account. It's up to the user to change the pixels
75            value
76       <LI> Writing a 'True Dicom' image after reading an ACR-NEMA image requests
77            from the user to build up 'manually' the Meta Elements group (0002) 
78       <LI> Management, on Big Endian Processors, of unloaded BinEntries
79    </UL> 
80 </UL>
81
82
83 <br>
84 <pre>
85 For people who get this new release :
86
87 We consider now that :
88 - any dicom related file is a gdcm::Document.
89 - a gdcm::Document can be :
90       - a gdcm::File,     if it contains pixel data,
91       - a gdcm::DicomDir, if it contains only informations 
92                           on the files in a given directory
93
94 - in a gdcm::Document, there are gdcm::DocEntry, that can be :
95      - gdcm::ContentEntry (any entry that has an actual value,
96                            *not* an embedded set of other gdcm::DocEntry)
97                            a gdcm::ContentEntry can be :
98           - gdcm::ValEntry (whose value is std::string representable 
99                             e.g. character values, or integers),
100           - gdcm::BinEntry (whose value is not std::string representable 
101                             e.g. color palettes, overlays, icons , ...)
102      - gdcm::Sequence (no proper 'value', but a set of gdcm::SQItems, 
103                        composed of a set of gdc::DocEntry, recursively)
104  
105 - in a gdcm::DicomDir, we only deal, hierarchically, with :
106      - gdcmPatient
107      - gdcmStudy
108      - gdcmSerie
109      - gdcmImage
110 </pre>
111 You can see <a href="uml-gdcm.pdf">gdcm UML Class Diagram</a>
112
113
114
115
116 <!#######################################################################>
117 <HR size="1"><ADDRESS style="align: right;"></ADDRESS>
118 <H2>
119    <A CLASS="anchor" NAME="NewsVersion0_6">
120       <B>Version 0.6 (June 8 2004)</B></A>
121 </H2>
122 <UL>
123    This version will be used by Insight Tool Kit 
124    (<a href="http://www.itk.org">ITK</a> 1.10) at the beginning of 2005.<br>
125     It's not yet packaged ...<br><br>
126    <LI> The new <TT>gdcmDocument</TT> class is a parent class of 
127        <TT>gdcmHeader</TT> class and <TT>gdcmDicomDir</TT> class.
128    <LI> Massive modifications in the Class Diagram :
129    <UL>
130       <LI> Entries (<TT>gdcmEntry</TT>) are now separated into 
131           <TT>ValEntry</TT> and <TT>SeqEntry</TT> (whose VR =
132           <TT>SQ</TT>)
133       <LI> a <TT>gdcmDocument</TT> is_a <TT>gdcmElementSet</TT>,
134          composed of a set of <TT>gdcmValEntry</TT> 
135          and <TT>gdcmSeqEntry</TT>
136       <LI> a <TT>gdcmSeqEntry</TT> is considered as a set 
137           of <TT>gdcmSQItem</TT>
138       <LI> Dicom Sequences (VR = <TT>SQ</TT>) are now dealt as tree-like 
139           structures within <TT>gdcmSQItem</TT> class.<br>
140           they are considered as a set of <TT>gdcmSQItem</TT>s
141       <LI> a <TT>gdcmSQItem</TT> is_a <TT>gdcmElementSet</TT> 
142   </UL>
143   <LI> Improvement of the jpeg sub-library: jpeg
144         compressed Dicom files (lossless and lossy) 
145   might be read (check-it out)
146 </UL>
147
148 <!#######################################################################>
149 <HR size="1"><ADDRESS style="align: right;"></ADDRESS>
150 <H2>
151    <A CLASS="anchor" NAME="NewsVersion0_4">
152       <B>Version 0.4 (February 6 2004)</B></A>
153 </H2>
154 <UL>
155    <LI> Introduction of a jpeg sub-library: some very simple jpeg-lossy
156         compressed Dicom files might be working (check-it out).
157    <LI> And also, fewer memory leaks, cleaned-up stl usage (should work
158         with gcc-3.x), python disutil installer (see file setup.py)
159         supporting both Swig and vtk wrapping.
160    <LI> Introduction of a RLE (Run-Time Encoding) library
161    <LI> Color images (RGB or Palette Color) are dealt with
162  
163 </UL>
164
165 <!#######################################################################>
166 <HR size="1"><ADDRESS style="align: right;"></ADDRESS>
167 <H2>
168    <A CLASS="anchor" NAME="NewsVersion0_3">
169       <B>Version 0.3 (July 8 2003)</B></A>
170 </H2>
171 <UL>
172    <LI> <TT>gdcmFile</TT> class now enables acces to the data
173        i.e. the image[s] content. Previously only parsing of the
174        Dicom header was available through usage of <TT>gdcmHeader</TT>
175        class.
176    <LI> a <A HREF="http://public.kitware.com/VTK/">VTK</A> plugin
177        of gdcm is now available through the <TT>vtkGdcmReader</TT>
178        vtk class (see it as a vtk wrapper of gdcm), which enables
179        <UL>
180          <LI> Loading of a single image,
181          <LI> Loading of a stack of images from multiple Dicom files,
182          <LI> this class is wrapped for vtkPython (by using native vtk
183               wrappers).
184        </UL>
185    <LI> Introduction of a jpeg sub-library: lossless-jpeg
186         compressed Dicom files work.
187 <LI> <TT>vtkgdcmViewer</TT> allows easy displaying of single/multiframe 
188      GreyLevel/RGB/PaletteColor images
189 </UL>
190
191 <!#######################################################################>
192 <HR size="1"><ADDRESS style="align: right;"></ADDRESS>
193 <H2>
194    <A CLASS="anchor" NAME="NewsVersion0_1">
195       <B>Version 0.1 (April 1 2003)</B></A>
196
197 <!#######################################################################>
198 <HR size="1"><ADDRESS style="align: right;"></ADDRESS>
199 <H2>
200    <A CLASS="anchor" name="NewsVersion0_1">
201       <B>Version 0.0 (March 14 2003)</B></A>
202
203 <HR size="1"><ADDRESS style="align: right;"></ADRESS>
204
205 </BODY>
206 </HTML>