/usr/include/dcmtk/dcmimgle/digsdfn.h is in libdcmtk2-dev 3.6.0-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | /*
*
* Copyright (C) 1996-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmimgle
*
* Author: Joerg Riesmeier
*
* Purpose: DicomGSDFunction (Header)
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:16:26 $
* CVS/RCS Revision: $Revision: 1.17 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DIGSDFN_H
#define DIGSDFN_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/dcmimgle/didispfn.h"
#define INCLUDE_CSTDDEF /* For NULL */
#include "dcmtk/ofstd/ofstdinc.h"
/*---------------------*
* class declaration *
*---------------------*/
/** Class to manage GSDF LUTs (for calibration)
*/
class DiGSDFunction
: public DiDisplayFunction
{
public:
/** constructor, read device characteristics file.
* Keywords: "max" for maximum DDL (Device Driving Level, required at first position)
* "amb" for ambient light and "lum" for illumination (both optional)
* "ord" for the order of the polynomial curve fitting algorithm used to interpolate
* the given base points (0 or absent = use cubic spline interpolation)
*
** @param filename name of the characteristics file (luminance/OD for each DDL)
* @param deviceType type of the output device (default: monitor)
* @param ord order of the polynomial curve fitting algorithm used to interpolate
* the given base points (-1 = use file setting, 0 = cubic spline)
*/
DiGSDFunction(const char *filename,
const E_DeviceType deviceType = EDT_Monitor,
const signed int ord = -1);
/** constructor, use given array of luminance/OD values. UNTESTED
* Values must be sorted and complete (i.e. there must be an entry for each DDL).
* The given arrays are copied internally.
*
** @param val_tab pointer to array with luminance/OD values
* @param count number of array elements (should be equal to 'max + 1')
* @param max maximum DDL (device driving level)
* @param deviceType type of the output device (default: monitor)
* @param ord order of the polynomial curve fitting algorithm used to interpolate
* the given base points (0 or negative = use cubic spline interpolation)
*/
DiGSDFunction(const double *val_tab,
const unsigned long count,
const Uint16 max = 255,
const E_DeviceType deviceType = EDT_Monitor,
const signed int ord = 0);
/** constructor, use given array of DDL and luminance/OD values. UNTESTED
* Values will be automatically sorted and missing values will be interpolated.
* The given arrays are copied internally.
*
** @param ddl_tab pointer to array with DDL values (must be with the interval 0..max)
* @param val_tab pointer to array with luminance/OD values
* @param count number of array elements (2..65536)
* @param max maximum DDL (device driving level)
* @param deviceType type of the output device (default: monitor)
* @param ord order of the polynomial curve fitting algorithm used to interpolate
* the given base points (0 or negative = use cubic spline interpolation)
*/
DiGSDFunction(const Uint16 *ddl_tab,
const double *val_tab,
const unsigned long count,
const Uint16 max = 255,
const E_DeviceType deviceType = EDT_Monitor,
const signed int ord = 0);
/** constructor, compute luminance/OD values automatically within the specified range.
*
** @param val_min minimum luminance/OD value
* @param val_max maximum luminance/OD value
* @param count number of DDLs (device driving level, 1..65536))
* @param deviceType type of the output device (default: monitor)
* @param ord order of the polynomial curve fitting algorithm used to interpolate
* the given base points (0 or negative = use cubic spline interpolation)
*/
DiGSDFunction(const double val_min,
const double val_max,
const unsigned long count = 256,
const E_DeviceType deviceType = EDT_Monitor,
const signed int ord = 0);
/** destructor
*/
virtual ~DiGSDFunction();
/** write curve data to a text file
*
** @param filename name of the text file to which the data should be written
* @param mode write CC and PSC to file if OFTrue
*
** @return status, true if successful, false otherwise
*/
int writeCurveData(const char *filename,
const OFBool mode = OFTrue);
/** set (reflected) ambient light value.
* measured in cd/m^2. applicable to softcopy and hardcopy devices.
* typical values: 0.5-5 for softcopy devices, 10 for transmissive hardcopy
* printer and 0 for reflective hardcopy printers.
*
** @param value ambient light value to be set (>= 0)
*
** @return status, true if successful, false otherwise
*/
int setAmbientLightValue(const double value);
/** set illumination value.
* measured in cd/m^2. applicable to hardcopy devices only.
* typical values: 2000 for transmissive hardcopy printer and 150 for
* reflective hardcopy printers.
*
** @param value illumination value to be set (>= 0)
*
** @return status, true if successful, false otherwise
*/
int setIlluminationValue(const double value);
/** set minimum optical density value "Dmin".
* measured in optical density (OD). applicable to printers only.
* typical value: 0.2
*
** @param value Dmin value to be set (or < 0 to unset)
*
** @return status, true if successful (1 = Dmax set, 2 = Dmax unset), false otherwise
*/
int setMinDensityValue(const double value);
/** set maximum optical density value "Dmax".
* measured in optical density (OD). applicable to printers only.
* typical value: 3.0
*
** @param value Dmax value to be set (or < 0 to unset)
*
** @return status, true if successful (1 = Dmax set, 2 = Dmax unset), false otherwise
*/
int setMaxDensityValue(const double value);
/** calculate the JND index for a given luminance value
*
** @param lum luminance value
*
** @return JND index if successful, -1 otherwise
*/
static double getJNDIndex(const double lum);
protected:
/** create GSDF LUT with specified number of entries
*
** @param count number of LUT entries
*
** @return pointer to created LUT if successful, NULL otherwise
*/
DiDisplayLUT *getDisplayLUT(unsigned long count);
/** calculate GSDF (array of 1023 luminance/OD values)
*
** @return status, true if successful, false otherwise
*/
int calculateGSDF();
/** calculate helper function for GSDF interpolation
*
** @return status, true if successful, false otherwise
*/
int calculateGSDFSpline();
/** calculate 'JNDMin' and 'JNDMax' for the given luminance/OD range
*
** @return status, true if successful, false otherwise
*/
int calculateJNDBoundaries();
private:
/// minimum JND index value for the given display system
double JNDMin;
/// maximum JND index value for the given display system
double JNDMax;
/// costant defining the number JND indexes for the maximum luminance/OD range (1023)
static const unsigned int GSDFCount;
/// array of luminance/OD values defining the GSDF
double *GSDFValue;
/// array of values used for the interpolation of the GSDF
double *GSDFSpline;
// --- declarations to avoid compiler warnings
DiGSDFunction(const DiGSDFunction &);
DiGSDFunction &operator=(const DiGSDFunction &);
};
#endif
/*
*
* CVS/RCS Log:
* $Log: digsdfn.h,v $
* Revision 1.17 2010-10-14 13:16:26 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.16 2010-03-01 09:08:46 uli
* Removed some unnecessary include directives in the headers.
*
* Revision 1.15 2005-12-08 16:47:40 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.14 2003/12/08 18:21:00 joergr
* Removed leading underscore characters from preprocessor symbols (reserved
* symbols). Updated CVS header.
*
* Revision 1.13 2003/02/12 11:35:16 joergr
* Added Dmin/max support to CIELAB calibration routines.
*
* Revision 1.12 2003/02/11 10:01:14 joergr
* Added support for Dmin/max to calibration routines (required for printers).
*
* Revision 1.11 2002/07/19 08:24:21 joergr
* Enhanced/corrected comments.
*
* Revision 1.10 2002/07/18 12:30:01 joergr
* Added support for hardcopy and softcopy input devices (camera and scanner).
* Added polygonal curve fitting algorithm as an alternate interpolation
* method.
*
* Revision 1.9 2002/07/02 16:23:42 joergr
* Added support for hardcopy devices to the calibrated output routines.
*
* Revision 1.8 2001/06/01 15:49:41 meichel
* Updated copyright header
*
* Revision 1.7 2000/07/17 14:37:12 joergr
* Moved method getJNDIndex to public part of the interface.
*
* Revision 1.6 2000/03/08 16:24:15 meichel
* Updated copyright header.
*
* Revision 1.5 2000/03/06 18:19:36 joergr
* Moved get-method to base class, renamed method and made method virtual to
* avoid hiding of methods (reported by Sun CC 4.2).
*
* Revision 1.4 1999/10/18 15:05:51 joergr
* Enhanced command line tool dcmdspfn (added new options).
*
* Revision 1.3 1999/09/17 12:11:31 joergr
* Added/changed/completed DOC++ style comments in the header files.
*
* Revision 1.2 1999/09/10 12:17:56 joergr
* Changed parameter type of copy constructor and assignment operator to avoid
* compiler warnings reported by gcc/ecgs on Solaris (with additional flags).
*
* Revision 1.1 1999/09/10 08:50:23 joergr
* Added support for CIELAB display function. Restructured class hierarchy
* for display functions.
*
*
*/
|