⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 djcodece.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 H
字号:
/* * *  Copyright (C) 1997-2005, OFFIS * *  This software and supporting documentation were developed by * *    Kuratorium OFFIS e.V. *    Healthcare Information and Communication Systems *    Escherweg 2 *    D-26121 Oldenburg, Germany * *  THIS SOFTWARE IS MADE AVAILABLE,  AS IS,  AND OFFIS MAKES NO  WARRANTY *  REGARDING  THE  SOFTWARE,  ITS  PERFORMANCE,  ITS  MERCHANTABILITY  OR *  FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES  OR *  ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND *  PERFORMANCE OF THE SOFTWARE IS WITH THE USER. * *  Module:  dcmjpeg * *  Author:  Marco Eichelberg, Norbert Olges * *  Purpose: abstract codec class for JPEG encoders. * *  Last Update:      $Author: meichel $ *  Update Date:      $Date: 2005/12/08 16:59:12 $ *  Source File:      $Source: /share/dicom/cvs-depot/dcmtk/dcmjpeg/include/dcmtk/dcmjpeg/djcodece.h,v $ *  CVS/RCS Revision: $Revision: 1.7 $ *  Status:           $State: Exp $ * *  CVS/RCS Log at end of file * */#ifndef DJCODEC_H#define DJCODEC_H#include "dcmtk/config/osconfig.h"#include "dcmtk/ofstd/oftypes.h"#include "dcmtk/dcmdata/dccodec.h"    /* for class DcmCodec */#include "dcmtk/dcmjpeg/djutils.h"    /* for enums */#include "dcmtk/ofstd/oflist.h"#include "dcmtk/ofstd/ofstring.h"   /* for class OFString */class DataInterface;class DJEncoder;class DcmDataset;class DJCodecParameter;class DJDecoder;class DcmItem;class DcmPixelItem;class DicomImage;class DcmTagKey;/** abstract codec class for JPEG encoders. *  This abstract class contains most of the application logic *  needed for a dcmdata codec object that implements a JPEG encoder *  using the DJEncoder interface to the underlying JPEG implementation. *  This class only supports compression, it neither implements *  decoding nor transcoding. */class DJCodecEncoder : public DcmCodec{public:  /// default constructor  DJCodecEncoder();  /// destructor  virtual ~DJCodecEncoder();  /** decompresses the given pixel sequence and   *  stores the result in the given uncompressedPixelData element.   *  @param fromRepParam current representation parameter of compressed data, may be NULL   *  @param pixSeq compressed pixel sequence   *  @param uncompressedPixelData uncompressed pixel data stored in this element   *  @param cp codec parameters for this codec   *  @param objStack stack pointing to the location of the pixel data   *    element in the current dataset.   *  @return EC_Normal if successful, an error code otherwise.   */  virtual OFCondition decode(    const DcmRepresentationParameter * fromRepParam,    DcmPixelSequence * pixSeq,    DcmPolymorphOBOW& uncompressedPixelData,    const DcmCodecParameter * cp,    const DcmStack& objStack) const;  /** compresses the given uncompressed DICOM image and stores   *  the result in the given pixSeq element.   *  @param pixelData pointer to the uncompressed image data in OW format   *    and local byte order   *  @param length of the pixel data field in bytes   *  @param toRepParam representation parameter describing the desired   *    compressed representation (e.g. JPEG quality)   *  @param pixSeq compressed pixel sequence (pointer to new DcmPixelSequence object   *    allocated on heap) returned in this parameter upon success.   *  @param cp codec parameters for this codec   *  @param objStack stack pointing to the location of the pixel data   *    element in the current dataset.   *  @return EC_Normal if successful, an error code otherwise.   */  virtual OFCondition encode(    const Uint16 * pixelData,    const Uint32 length,    const DcmRepresentationParameter * toRepParam,    DcmPixelSequence * & pixSeq,    const DcmCodecParameter *cp,    DcmStack & objStack) const;  /** transcodes (re-compresses) the given compressed DICOM image and stores   *  the result in the given toPixSeq element.   *  @param fromRepType current transfer syntax of the compressed image   *  @param fromRepParam current representation parameter of compressed data, may be NULL   *  @param fromPixSeq compressed pixel sequence   *  @param toRepParam representation parameter describing the desired   *    new compressed representation (e.g. JPEG quality)   *  @param toPixSeq compressed pixel sequence (pointer to new DcmPixelSequence object   *    allocated on heap) returned in this parameter upon success.   *  @param cp codec parameters for this codec   *  @param objStack stack pointing to the location of the pixel data   *    element in the current dataset.   *  @return EC_Normal if successful, an error code otherwise.   */  virtual OFCondition encode(    const E_TransferSyntax fromRepType,    const DcmRepresentationParameter * fromRepParam,    DcmPixelSequence * fromPixSeq,    const DcmRepresentationParameter * toRepParam,    DcmPixelSequence * & toPixSeq,    const DcmCodecParameter * cp,    DcmStack & objStack) const;  /** checks if this codec is able to convert from the   *  given current transfer syntax to the given new   *  transfer syntax   *  @param oldRepType current transfer syntax   *  @param newRepType desired new transfer syntax   *  @return true if transformation is supported by this codec, false otherwise.   */  virtual OFBool canChangeCoding(    const E_TransferSyntax oldRepType,    const E_TransferSyntax newRepType) const;  /** returns the transfer syntax that this particular codec   *  is able to encode and decode.   *  @return supported transfer syntax   */  virtual E_TransferSyntax supportedTransferSyntax() const = 0;protected:  /** format compression ratio as string and append to given string object.   *  @param arg string to append to   *  @param ratio compression ratio   */  static void appendCompressionRatio(OFString& arg, double ratio);    /** toggles Planar Configuration of 8-bit pixel data from "by pixel" to   *  "by plane" and vice versa.   *  @param pixelData - [in/out] Original pixel data (input), contains   *                     pixel data with toggled Planar configuration after   *                     returning (output).   *  @param numValues - [in] The number of 8 bit values in pixelData   *  @param samplesPerPixel - [in] Number of components for one pixel   *  @param oldPlanarConfig - [in] The old Planar Configuration, that should   *                           be toggled. 0 means "by pixel", 1 "by color"   *  @return EC_Normal, if conversion was successful; error else   */  static OFCondition togglePlanarConfiguration8(    Uint8 *pixelData,    const unsigned long numValues,    const Uint16 samplesPerPixel,    const Uint16 oldPlanarConfig);  /** toggles Planar Configuration of 16-bit pixel data from "by pixel" to   *  "by plane" and vice versa.   *  @param pixelData - [in/out] Original pixel data (input), contains   *                     pixel data with toggled Planar configuration after   *                     returning (output).   *  @param numValues - [in] The number of 16 bit values in pixelData   *  @param samplesPerPixel - [in] Number of components for one pixel   *  @param oldPlanarConfig - [in] The old Planar Configuration, that should   *                           be toggled. 0 means "by pixel", 1 "by color"   *  @return EC_Normal, if conversion was successful; error else   */  static OFCondition togglePlanarConfiguration16(    Uint16 *pixelData,    const unsigned long numValues,    const Uint16 samplesPerPixel,    const Uint16 oldPlanarConfig);private:  /** compresses the given uncompressed DICOM color image and stores   *  the result in the given pixSeq element.   *  @param YBRmode true if the source image has YBR_FULL or YBR_FULL_422   *    photometric interpretation and can thus be compressed without color   *    space conversion.   *  @param dataset DICOM dataset containing the pixel data as well as   *    descriptive attributes   *  @param toRepParam representation parameter describing the desired   *    compressed representation (e.g. JPEG quality)   *  @param pixSeq compressed pixel sequence (pointer to new DcmPixelSequence object   *    allocated on heap) returned in this parameter upon success.   *  @param cp codec parameters for this codec   *  @param compressionRatio compression ratio returned in this parameter   *    if successful.   *  @return EC_Normal if successful, an error code otherwise.   */  virtual OFCondition encodeColorImage(        OFBool YBRmode,        DcmItem *dataset,        const DcmRepresentationParameter * toRepParam,        DcmPixelSequence * & pixSeq,        const DJCodecParameter *cp,        double& compressionRatio) const;  /** compresses the given uncompressed monochrome DICOM image and stores   *  the result in the given pixSeq element.   *  @param dataset DICOM dataset containing the pixel data as well as   *    descriptive attributes   *  @param toRepParam representation parameter describing the desired   *    compressed representation (e.g. JPEG quality)   *  @param pixSeq compressed pixel sequence (pointer to new DcmPixelSequence object   *    allocated on heap) returned in this parameter upon success.   *  @param cp codec parameters for this codec   *  @param compressionRatio compression ratio returned in this parameter   *    if successful.   *  @return EC_Normal if successful, an error code otherwise.   */  virtual OFCondition encodeMonochromeImage(        DcmItem *dataset,        const DcmRepresentationParameter * toRepParam,        DcmPixelSequence * & pixSeq,        const DJCodecParameter *cp,        double& compressionRatio) const;  /** compresses the given uncompressed DICOM image and stores   *  the result in the given pixSeq element. No colorspace   *  conversions, modality or windowing transformations are applied   *  to guarantee, that the quality of the source image is fully preserved.   *  @param toRepParam - [in] representation parameter describing the desired   *  @param pixSeq - [out] compressed pixel sequence (pointer to new DcmPixelSequence   *    object allocated on heap) returned in this parameter upon success   *  @param cp - [in] codec parameters for this codec   *  @param objStack - [in/out] stack pointing to the location of the pixel data   *    element in the current dataset.   *  @return EC_Normal if successful, an error code otherwise.   */  virtual OFCondition encodeTrueLossless(    const DcmRepresentationParameter * toRepParam,    DcmPixelSequence * & pixSeq,    const DcmCodecParameter *cp,    DcmStack & objStack) const;  /** create Lossy Image Compression and Lossy Image Compression Ratio.   *  @param dataset dataset to be modified   *  @param ratio image compression ratio > 1. This is not the "quality factor"   *    but the real effective ratio between compressed and uncompressed image,   *    i. e. 30 means a 30:1 lossy compression.   *  @return EC_Normal if successful, an error code otherwise   */  virtual OFCondition updateLossyCompressionRatio(DcmItem *dataset, double ratio) const;  /** create Derivation Description.   *  @param dataset dataset to be modified   *  @param toRepParam representation parameter passed to encode()   *  @param cp codec parameter passed to encode()   *  @param bitsPerSample bits per sample of the original image data prior to compression   *  @param ratio image compression ratio. This is not the "quality factor"   *    but the real effective ratio between compressed and uncompressed image,   *    i. e. 30 means a 30:1 lossy compression.   *  @return EC_Normal if successful, an error code otherwise   */  virtual OFCondition updateDerivationDescription(      DcmItem *dataset,      const DcmRepresentationParameter * toRepParam,      const DJCodecParameter *cp,      Uint8 bitsPerSample,      double ratio) const;  /** for all overlay groups create (60xx,3000) Overlay Data.   *  @param dataset dataset to be modified   *  @param image DicomImage object for this dataset   *  @return EC_Normal if successful, an error code otherwise   */  virtual OFCondition adjustOverlays(DcmItem *dataset, DicomImage& image) const;  /** returns true if the transfer syntax supported by this   *  codec is lossless.   *  @return lossless flag   */  virtual OFBool isLosslessProcess() const = 0;  /** creates 'derivation description' string after encoding.   *  @param toRepParam representation parameter passed to encode()   *  @param cp codec parameter passed to encode()   *  @param bitsPerSample bits per sample of the original image data prior to compression   *  @param ratio image compression ratio. This is not the "quality factor"   *    but the real effective ratio between compressed and uncompressed image,   *    i. e. 30 means a 30:1 lossy compression.   *  @param derivation description returned in this   *    parameter which is initially empty   */  virtual void createDerivationDescription(    const DcmRepresentationParameter * toRepParam,    const DJCodecParameter *cp,    Uint8 bitsPerSample,    double ratio,    OFString& derivationDescription) const = 0;  /** creates an instance of the compression library to be used   *  for encoding/decoding.   *  @param toRepParam representation parameter passed to encode()   *  @param cp codec parameter passed to encode()   *  @param bitsPerSample bits per sample for the image data   *  @return pointer to newly allocated codec object   */  virtual DJEncoder *createEncoderInstance(    const DcmRepresentationParameter * toRepParam,    const DJCodecParameter *cp,    Uint8 bitsPerSample) const = 0;  /** modifies all VOI window center/width settings in the image.   *  Modifications are based on the pixel value mapping   *  f(x) = (x+voiOffset)*voiFactor   *  @param dataset dataset to be updated   *  @param voiOffset offset to be added to each pixel   *  @param voiFactor factor to be multiplied   *  @return EC_Normal if successful, an error code otherwise   */  static OFCondition correctVOIWindows(DcmItem *dataset, double voiOffset, double voiFactor);  OFCondition updatePlanarConfiguration(    DcmItem *item,    const Uint16 newPlanConf) const;};#endif/* * CVS/RCS Log * $Log: djcodece.h,v $ * Revision 1.7  2005/12/08 16:59:12  meichel * Changed include path schema for all DCMTK header files * * Revision 1.6  2005/12/01 11:13:01  onken * Minor code modifications for gcc 4 * * Revision 1.5  2005/11/29 11:00:40  onken * *** empty log message *** * * Revision 1.4  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.3  2003/07/04 13:26:22  meichel * Replaced forward declarations for OFString with explicit includes, *   needed when compiling with HAVE_STD_STRING * * Revision 1.2  2002/05/24 14:58:04  meichel * Moved helper methods that are useful for different compression techniques *   from module dcmjpeg to module dcmdata * * Revision 1.1  2001/11/13 15:56:16  meichel * Initial release of module dcmjpeg * * */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -