/usr/include/dcmtk/dcmjpeg/djencode.h is in libdcmtk-dev 3.6.2-3build3.
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 | /*
*
* Copyright (C) 1997-2011, 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.
*
*/
#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 DCMTK_DCMJPEG_EXPORT 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
|