From 0fb6716cd0eff6a09b845e3ae1601dce2c9d9718 Mon Sep 17 00:00:00 2001 From: jpr Date: Wed, 1 Mar 2006 09:53:24 +0000 Subject: [PATCH] Forget to commit this one ! --- src/gdcmCommon.h | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/src/gdcmCommon.h b/src/gdcmCommon.h index f5846edd..dc52c804 100644 --- a/src/gdcmCommon.h +++ b/src/gdcmCommon.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmCommon.h,v $ Language: C++ - Date: $Date: 2006/01/24 19:58:13 $ - Version: $Revision: 1.104 $ + Date: $Date: 2006/03/01 09:53:24 $ + Version: $Revision: 1.105 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -126,6 +126,24 @@ enum LodModeType // (*exclusive* from LD_NOSEQ and LD_NOSHADOW) }; +/// \brief Only user knows what kind of image he is going to write ! +/// +/// -1) user created ex nihilo his own image and wants to write it as a Dicom image. +/// USER_OWN_IMAGE +/// -2) user modified the pixels of an existing image. +/// FILTERED_IMAGE +/// -3) user created a new image, using existing images (eg MIP, MPR, cartography image) +/// CREATED_IMAGE +/// -4) user anonymized an image without processing the pixels. +/// ANONYMIZED_IMAGE +enum ImageContentType +{ + USER_OWN_IMAGE, + FILTERED_IMAGE, + CREATED_IMAGE, + UNMODIFIED_PIXELS_IMAGE +}; + /** * \brief structure, for internal use only */ -- 2.48.1