]> Creatis software - gdcm.git/commitdiff
Update News
authorjpr <jpr>
Tue, 22 Mar 2005 11:47:09 +0000 (11:47 +0000)
committerjpr <jpr>
Tue, 22 Mar 2005 11:47:09 +0000 (11:47 +0000)
Doc/Website/Download.html
Doc/Website/News.html

index ed3fc341c81e0992680d268ca6da17f421ebf119..bfdf6ff8db26f5f52b0b346abe8324d770047706 100644 (file)
@@ -20,7 +20,7 @@ page.
 
 <!#######################################################################>
 <HR size="1"><ADDRESS style="align: right;"></ADDRESS>
-<H2>Packaged distributions of gdcm last stable
+<H2>(Packaged) distributions of gdcm last stable
    <A HREF="News.html#NewsVersion1_0">version 1.0</A> 
    (Feb 14 2005)
 </H2>
@@ -101,7 +101,7 @@ with the cvs tag <B>Version1_0</B> e.g.
 
 <!#######################################################################>
 <HR size="1"><ADDRESS style="align: right;"></ADDRESS>
-<H2>Packaged distributions of gdcm stable
+<H2> Distribution of gdcm stable
    <A HREF="News.html#NewsVersion0_6">version 0.6</A> 
    (June 8 2004)
 </H2>
@@ -163,16 +163,14 @@ for more information on the features of this release.
            nosave height=32 width=32>
    <UL>
      <LI>Sources in a compressed tarball:
-         <!-------
-         <A HREF="../GdcmPackages/bin20040608/gdcm-0.6.0.zip">
-                 gdcm-0.6.0.zip</A>.
-         ------>
-         : <i>Sorry, not yet made</i>
+         
+         <A HREF="../GdcmPackages/bin20050318/gdcm0.6.tar.gz">
+                 gdcm0.6.tar.gz</A>.
      </LI>
      <LI>Source rpm
          <!-------  
          <A HREF="../GdcmPackages/bin20040608/gdcm-0.6.0-1.src.rpm">
-                 gdcm-0.6.0-1.src.rpm</A>,
+                 gdcm-0.6.0.src.rpm</A>,
          which requires swig 1.3.17.x [
          <A HREF="http://www.creatis.insa-lyon.fr/rpm/swig13-1.3.17-1.i386.rpm">
                  swig13-1.3.17-1.i386.rpm</A>,
index 8bac7871c7de5c1af3ec38de0e6a409eeb4985f6..db5827e6997b71214ec03f152e6fd37999b8de08 100644 (file)
@@ -24,10 +24,6 @@ Any contribution is welcome.
 
 <UL>
    <LI> gdcm doesn't read yet JPEG-LS and JPEG2000 encoded files.
-   <LI> Allow user to tell <TT>gdcm::Document</TT> constructor he doesn't 
-           want to deal with <TT>SeqEntry</TT (every time it's possible)
-   <LI> Allow user to tell <TT>gdcm::Document</TT> constructor he doesn't 
-           want to deal with <TT>Shadow groups</TT> 
    <LI> Allow user to tell <TT>gdcm::Document</TT> constructor he just wants 
            to load a given list of <TT>DocEntries</TT> (to save CPU time and RAM
            space)
@@ -40,13 +36,14 @@ Any contribution is welcome.
            <TT> PATIENT</TT>/<TT>STUDY</TT>/<TT>SERIE</TT>/<TT>IMAGE</TT>)
    <LI> Allow user to add an Entry to the default entry list, before
            making a <TT>DICOMDIR</TT> from a root directory
-   <LI> <TT>DICOMDIR</TT> anonymiser (<TT>Load</TT> and <TT>Noload</TT> mode)
    <LI> 16-bits-LUT full Management
    <LI> User friendly management of <TT>Rescale Slope</TT> and
            <TT>Rescale Intercept</TT>
    <LI> Allow parsing the <TT>Shadow groups</TT> against a user supplied 
            private <TT>Dicom Dictionary</TT> (pfff!...)
    <LI> An accurate <TT>SerieHelper</TT>
+   <LI> A <TT>SerieHelper</TT> that would use the <TT>DICOMDIR</TT> (if any)
+        instead of parsing all the files within the Root Directory
 </UL>
 
 <!#######################################################################>
@@ -70,6 +67,22 @@ Any contribution is welcome.
       <LI>Both <TT>vtkgdcmViewer</TT> and <TT>vtkgdcmViewer2</TT> 
           are available to allow easy displaying of single/multiframe 
           GreyLevel/RGB/PaletteColor images
+      <LI> <TT>DICOMDIR</TT> anonymiser (<TT>Load</TT> and <TT>Noload</TT> mode)       <LI> User is now allowed to tell <TT>gdcm::Document</TT> constructor 
+            he doesn't want to deal with <TT>SeqEntry</TT> 
+            (every time it's possible) <br> and/or he doesn't 
+            want to deal with <TT>Shadow groups</TT> (every time it's
+            possible)<br>
+            use : <br><TT>
+            gdcm::File *f = new gdcm::File();<br>
+            f->SetLoadMode(NO_SEQ | NO_SHADOW);<br>
+            f->Load(fileName);<br>
+            </TT>
+            instead of : <br>
+            <TT>
+            gdcm::File *f = new gdcm::File(fileName);</TT>
+           <br>
+  
+       <LI>
    </UL>
 
    <LI> Bug fixes
@@ -82,7 +95,9 @@ Any contribution is welcome.
            does not request any longer from the user to build up 
             'manually' the Meta Elements group (0002)
       <LI> Old '24 Bits' ACR-NEMA are now correctly re-written in DICOM mode.
+      <LI> Element 0x0000 of <TT>Shadow groups</TT> is always forced to be a
+           <TT>ValEntry</TT> and its VR is forced to <TT>UL</TT> 
+      <LI>
    </UL>
 
    <LI> A.P.I. breaking modifications (since previous version : <TT>1.0</TT>)