X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Doc%2FWebsite%2FNews.html;h=f44d24354fc321cf7afd33cdf6d237fa41c06973;hb=998942248b883bf900e3b6918d4ff13aa8084aaf;hp=5c61e98a3f0c7569864a612924e56e6adec2eddb;hpb=5d500da6efca5f90d38223dbb65f7f521a276a1a;p=gdcm.git diff --git a/Doc/Website/News.html b/Doc/Website/News.html index 5c61e98a..f44d2435 100644 --- a/Doc/Website/News.html +++ b/Doc/Website/News.html @@ -8,10 +8,10 @@ - +

Gdcm News

- +

@@ -21,34 +21,91 @@ We know the following are missing; don't loose time looking for them ...
We know they could be helpfull. We shall add them some day.
Any contribution is welcome. - -

@@ -62,7 +119,6 @@ Any contribution is welcome. @@ -71,7 +127,38 @@ Any contribution is welcome.
  • Both vtkgdcmViewer and vtkgdcmViewer2 are available to allow easy displaying of single/multiframe GreyLevel/RGB/PaletteColor images +
  • DICOMDIR anonymiser (Load and Noload mode) +
  • User is now allowed to tell gdcm::Document constructor + he doesn't want to deal with SeqEntry + (every time it's possible)
    and/or he doesn't + want to deal with Shadow groups (every time it's + possible)
    + use :
    + gdcm::File *f = new gdcm::File();
    + f->SetLoadMode(NO_SEQ | NO_SHADOW);
    + f->Load(fileName);
    +
    + instead of :
    + + gdcm::File *f = new gdcm::File(fileName);
    + (old style still available) +
  • User is now allowed to tell gdcm::DicomDir constructor + he doesn't want to deal with SeqEntry + (every time it's possible)
    and/or he doesn't + want to deal with Shadow groups (every time it's + possible)
    + use :
    + gdcm::DicomDir *dcmdir = new gdcm::DicomDir( );
    + dcmdir->SetParseDir(true);
    + dcmdir->SetLoadMode(NO_SEQ | NO_SHADOW);
    + dcmdir->Load(dirName);
    +
    + instead of :
    + + gdcm::DicomDir *dcmdir = new gdcm::DicomDir(dirName, true);
    + (old style still available) +
  • Bug fixes @@ -80,11 +167,14 @@ Any contribution is welcome. high values = dark) and MONOCHROME2 (low values = dark, high values = bright) is now taken into account.
    It's no longer up to the user to change the pixels value -
  • Writing a 'True Dicom' image after reading an ACR-NEMA image +
  • Writing a 'True Dicom' image after reading an ACR-NEMA image does not request any longer from the user to build up - 'manually' the Meta Elements group (0002) -
  • Old '24 Bits' ACR-NEMA are now correctly re-written in DICOM mode. - + 'manually' the Meta Elements group (Ox0002) +
  • Old '24 Bits' ACR-NEMA are now correctly re-written + in DICOM V3 mode. +
  • Element 0x0000 of Shadow groups is always forced to be a + ValEntry and its VR is forced to UL +
  • A.P.I. breaking modifications (since previous version : 1.0) @@ -93,17 +183,14 @@ Any contribution is welcome. -
  • Known bugs -
  • Sample Data - @@ -154,24 +241,24 @@ Any contribution is welcome.
  • Removal of useless accessors GetXxxByname, SetXxxByname
  • Renaming of accessors GetXxxByNumber, SetXxxByNumber -as follow : + as follow :