/usr/include/dcmtk/dcmjpeg/djencode.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 | /*
*
* Copyright (C) 1997-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: dcmjpeg
*
* Author: Marco Eichelberg
*
* Purpose: singleton class that registers encoders for all supported JPEG processes.
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:17:17 $
* CVS/RCS Revision: $Revision: 1.9 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef DJENCODE_H
#define DJENCODE_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/oftypes.h" /* for OFBool */
#include "dcmtk/dcmjpeg/djutils.h"
#include "dcmtk/dcmdata/dctypes.h" /* for Uint32 */
class DJCodecParameter;
class DJEncoderBaseline;
class DJEncoderExtended;
class DJEncoderLossless;
class DJEncoderP14SV1;
class DJEncoderProgressive;
class DJEncoderSpectralSelection;
/** singleton class that registers encoders for all supported JPEG processes.
*/
class DJEncoderRegistration
{
public:
/** registers encoders for all supported JPEG processes.
* If already registered, call is ignored unless cleanup() has
* been performed before.
* @param pCompressionCSConversion color conversion mode for compression
* @param pCreateSOPInstanceUID mode for SOP Instance UID creation
* @param pOptimizeHuffman perform huffman table optimization for 8 bits/pixel compression?
* @param pSmoothingFactor smoothing factor for image compression, 0..100
* @param pForcedBitDepth forced bit depth for image compression, 0 (auto) or 8/12/16
* @param pFragmentSize maximum fragment size (in kbytes) for compression, 0 for unlimited.
* @param pCreateOffsetTable create offset table during image compression?
* @param pSampleFactors subsampling mode for color image compression
* @param pWriteYBR422 flag indicating whether a compressed YBR color stream should
* be marked as YBR_FULL or YBR_FULL_422 on DICOM level
* @param pConvertToSC flag indicating whether image should be converted to
* Secondary Capture upon compression
* @param pWindowType mode for VOI transformation of monochrome images
* @param pWindowParameter parameter for VOI transform of monochrome images, used in modes 1, 2, 4, 6
* @param pVoiCenter VOI window center for mode 5
* @param pVoiWidth VOI window width for mode 5
* @param pRoiLeft Region of Interest left corner for for VOI transform of monochrome images, mode 7
* @param pRoiTop Region of Interest upper corner for for VOI transform of monochrome images, mode 7
* @param pRoiWidth Region of Interest width for for VOI transform of monochrome images, mode 7
* @param pRoiHeight Region of Interest height for for VOI transform of monochrome images, mode 7
* @param pUsePixelValues Check smallest and largest pixel value and optimize compression, mode 0 only
* @param pUseModalityRescale Create Rescale Slope/Intercept to scale back
* to original pixel range, mode 0 only
* @param pAcceptWrongPaletteTags Accept wrong palette attribute tags (only "pseudo lossless" encoder)
* @param pAcrNemaCompatibility Accept old ACR-NEMA images without photometric interpretation (only "pseudo lossless" encoder)
* @param pRealLossless Enables true lossless compression (replaces old "pseudo" lossless encoders)
*/
static void registerCodecs(
E_CompressionColorSpaceConversion pCompressionCSConversion = ECC_lossyYCbCr,
E_UIDCreation pCreateSOPInstanceUID = EUC_default,
OFBool pOptimizeHuffman = OFFalse,
int pSmoothingFactor = 0,
int pForcedBitDepth = 0,
Uint32 pFragmentSize = 0,
OFBool pCreateOffsetTable = OFTrue,
E_SubSampling pSampleFactors = ESS_444,
OFBool pWriteYBR422 = OFFalse,
OFBool pConvertToSC = OFFalse,
unsigned long pWindowType = 0,
unsigned long pWindowParameter = 0,
double pVoiCenter = 0.0,
double pVoiWidth = 0.0,
unsigned long pRoiLeft = 0,
unsigned long pRoiTop = 0,
unsigned long pRoiWidth = 0,
unsigned long pRoiHeight = 0,
OFBool pUsePixelValues = OFTrue,
OFBool pUseModalityRescale = OFFalse,
OFBool pAcceptWrongPaletteTags = OFFalse,
OFBool pAcrNemaCompatibility = OFFalse,
OFBool pRealLossless = OFTrue);
/** deregisters encoders.
* Attention: Must not be called while other threads might still use
* the registered codecs, e.g. because they are currently encoding
* DICOM data sets through dcmdata.
*/
static void cleanup();
private:
/// flag indicating whether the encoders are already registered.
static OFBool registered;
/// pointer to codec parameter shared by all encoders
static DJCodecParameter *cp;
/// pointer to encoder for baseline JPEG
static DJEncoderBaseline *encbas;
/// pointer to encoder for extended JPEG
static DJEncoderExtended *encext;
/// pointer to encoder for spectral selection JPEG
static DJEncoderSpectralSelection *encsps;
/// pointer to encoder for progressive JPEG
static DJEncoderProgressive *encpro;
/// pointer to encoder for lossless SV1 JPEG
static DJEncoderP14SV1 *encsv1;
/// pointer to encoder for lossless JPEG
static DJEncoderLossless *enclol;
};
#endif
/*
* CVS/RCS Log
* $Log: djencode.h,v $
* Revision 1.9 2010-10-14 13:17:17 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.8 2009-10-07 12:44:33 uli
* Switched to logging mechanism provided by the "new" oflog module.
*
* Revision 1.7 2008-04-30 12:45:52 meichel
* DJEncoderRegistration::registerCodecs now by default enables the
* true lossless codec instead of pseudo-lossless.
*
* Revision 1.6 2005/12/08 16:59:32 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.5 2005/11/29 15:57:05 onken
* Added commandline options --accept-acr-nema and --accept-palettes
* (same as in dcm2pnm) to dcmcjpeg and extended dcmjpeg to support
* these options. Thanks to Gilles Mevel for suggestion.
*
* Revision 1.3 2005/11/29 08:50:34 onken
* Added support for "true" lossless compression in dcmjpeg, that doesn't
* use dcmimage classes, but compresses raw pixel data (8 and 16 bit) to
* avoid losses in quality caused by color space conversions or modality
* transformations etc.
* Corresponding commandline option in dcmcjpeg (new default)
*
* Revision 1.2 2001/11/19 15:13:29 meichel
* Introduced verbose mode in module dcmjpeg. If enabled, warning
* messages from the IJG library are printed on ofConsole, otherwise
* the library remains quiet.
*
* Revision 1.1 2001/11/13 15:56:27 meichel
* Initial release of module dcmjpeg
*
*
*/
|