]> Creatis software - gdcm.git/commitdiff
Update News
authorjpr <jpr>
Fri, 17 Mar 2006 14:56:25 +0000 (14:56 +0000)
committerjpr <jpr>
Fri, 17 Mar 2006 14:56:25 +0000 (14:56 +0000)
CMakeLists.txt
Doc/Website/News.html
Example/ReWriteExtended.cxx

index 4bc3d87f414e031ba9aac51038b854bdb7a943a1..47d3d3ffd5f10e26fa18dc0652d3add0ab9bf2ef 100644 (file)
@@ -7,7 +7,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.0)
 # GDCM version number, usefull for packaging and doxygen doc:
 SET(GDCM_MAJOR_VERSION 1)
 SET(GDCM_MINOR_VERSION 3)
-SET(GDCM_BUILD_VERSION 0)
+SET(GDCM_BUILD_VERSION 1)
 SET(GDCM_VERSION 
     "${GDCM_MAJOR_VERSION}.${GDCM_MINOR_VERSION}.${GDCM_BUILD_VERSION}")
 
index 6d52b378b0a5ccf371a0dec79321c2d1cd7fb345..af938451e587b100075bd694bd463be0eff05e43 100644 (file)
@@ -132,6 +132,24 @@ Any contribution is welcome.
          Documentation</a> 
    <LI> New Features
    <UL>
+      <LI> To <i>try to</i> make gdcm images PACS usable, user is now allowed to
+           gdcm what kind of image he wants to write, using :  <br>
+   <TT>void FileHelper::SetContentType (ImageContentType c);</TT> <br>
+   Four different types are identify (probabely more will be added) :
+      <UL> 
+         <LI>
+      1) user created ex nihilo his own image and wants to write it as a Dicom image.<br>
+          c : <TT>USER_OWN_IMAGE</TT>
+         <LI>
+      2) user modified the pixels of an existing image, using mathematical operations.<br>
+          c : <TT>FILTERED_IMAGE</TT>
+         <LI>
+      3) user created a new image, using existing images (eg MIP, MPR, cartography image)<br>
+          c : <TT>CREATED_IMAGE</TT>
+         wq<LI>
+       4) user modified/added some tags *without processing* the pixels (anonymization, etc)<br>
+         c : <TT>UNMODIFIED_PIXELS_IMAGE</TT> 
+      </UL>
       <LI> Stupid difference between <TT>gdcm::ValEntry</TT> 
            and <TT>gdcm::BinEntry</TT> removed. <br>
            Only <TT>gdcm::DataEntry</TT> exist, now. 
index 256a349194f995228ffede72bcd46524f90dbafd..8681e4479440c3049235ded47e5d928a31100c09 100755 (executable)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: ReWriteExtended.cxx,v $
   Language:  C++
-  Date:      $Date: 2006/03/17 14:40:47 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2006/03/17 14:56:29 $
+  Version:   $Revision: 1.2 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -27,8 +27,8 @@ int main(int argc, char *argv[])
 {
    START_USAGE(usage)
    " \n ReWriteExtended :\n",
-   " Re write a full gdcm-readable Dicom image                              ",
-   "     (usefull when the file header is not very straight).               ",
+   " Re write a full gdcm-readable Dicom image using new features           ",
+   "     (DO NOT use right now; checking no achieved !).                    ",
    "                                                                        ",
    " usage: ReWriteExtended filein=inputFileName fileout=outputFileName     ",
    "      filecontent = 1 : USER_OWN_IMAGE                                  ",