/usr/include/dcmtk/dcmimage/diquant.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 | /*
*
* Copyright (C) 2002-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: dcmimage
*
* Author: Marco Eichelberg
*
* Purpose: class DcmQuantFloydSteinberg
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:16:30 $
* CVS/RCS Revision: $Revision: 1.7 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DIQUANT_H
#define DIQUANT_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/ofcond.h" /* for OFCondition */
#include "dcmtk/dcmdata/dctypes.h" /* for Uint32 etc. */
#include "dcmtk/dcmimage/diqttype.h" /* for enums */
#include "dcmtk/ofstd/ofstring.h" /* for class OFString */
class DicomImage;
class DcmItem;
class DcmTagKey;
class DcmQuant
{
public:
/** converts the given color image into a palette color image.
* All frames of the image are converted. The converted result
* is written as a complete Image Pixel module to the given
* target item.
* @param sourceImage DICOM color image
* @param target target item to which the palette color image is written
* @param writeAsOW if true, the LUT Data attributes are encoded as OW instead
* US. LUT Data is always written as OW if numberOfColors is 65536.
* @param write16BitEntries if true, LUT data is encoded with 16 bits per entry
* @param floydSteinberg determines whether or not to use Floyd-Steinberg
* error diffusion during creation of the palette color image
* @param numberOfColors desired number of colors in the color palette.
* Valid range is [2..65536].
* @param description description string suitable for use as
* Derivation Description returned in this parameter
* @param largeType algorithm used for determining the largest dimension
* in the Median Cut algorithm
* @param repType algorithm for choosing a representative color for each
* box in the Median Cut algorithm
* @return EC_Normal if successful, an error code otherwise.
*/
static OFCondition createPaletteColorImage(
DicomImage& sourceImage,
DcmItem& target,
OFBool writeAsOW,
OFBool write16BitEntries,
OFBool floydSteinberg,
Uint32 numberOfColors,
OFString& description,
DcmLargestDimensionType largeType = DcmLargestDimensionType_default,
DcmRepresentativeColorType repType = DcmRepresentativeColorType_default);
/** create Derivation Description. If a derivation description
* already exists, the old text is appended to the new text.
* @param dataset dataset to be modified
* @param description description string.
* @return EC_Normal if successful, an error code otherwise
*/
static OFCondition updateDerivationDescription(DcmItem *dataset, const char *description);
};
#endif
/*
* CVS/RCS Log:
* $Log: diquant.h,v $
* Revision 1.7 2010-10-14 13:16:30 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.6 2009-10-13 14:08:33 uli
* Switched to logging mechanism provided by the "new" oflog module
*
* Revision 1.5 2005-12-08 16:01:56 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.4 2004/08/24 14:55:24 meichel
* Removed duplicate code
*
* Revision 1.3 2003/12/23 12:21:36 joergr
* Updated copyright header.
*
* Revision 1.2 2003/07/04 13:25:40 meichel
* Replaced forward declarations for OFString with explicit includes,
* needed when compiling with HAVE_STD_STRING
*
* Revision 1.1 2002/01/25 13:32:08 meichel
* Initial release of new color quantization classes and
* the dcmquant tool in module dcmimage.
*
*
*/
|