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

📄 djencsps.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 * *  Purpose: Codec class for encoding JPEG Spectral Selection (lossy, 8/12-bit) * *  Last Update:      $Author: meichel $ *  Update Date:      $Date: 2005/12/08 16:59:34 $ *  Source File:      $Source: /share/dicom/cvs-depot/dcmtk/dcmjpeg/include/dcmtk/dcmjpeg/djencsps.h,v $ *  CVS/RCS Revision: $Revision: 1.2 $ *  Status:           $State: Exp $ * *  CVS/RCS Log at end of file * */#ifndef DJENCSPS_H#define DJENCSPS_H#include "dcmtk/config/osconfig.h"#include "dcmtk/dcmjpeg/djcodece.h" /* for class DJCodecEncoder *//** Encoder class for JPEG Spectral Selection (lossy, 8/12-bit) */class DJEncoderSpectralSelection : public DJCodecEncoder{public:   /// default constructor  DJEncoderSpectralSelection();  /// destructor  virtual ~DJEncoderSpectralSelection();  /** returns the transfer syntax that this particular codec   *  is able to encode and decode.   *  @return supported transfer syntax   */  virtual E_TransferSyntax supportedTransferSyntax() const;private:  /** returns true if the transfer syntax supported by this   *  codec is lossless.   *  @return lossless flag   */  virtual OFBool isLosslessProcess() const;  /** 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 imageComments image comments returned in this   *    parameter which is initially empty   */  virtual void createDerivationDescription(    const DcmRepresentationParameter * toRepParam,    const DJCodecParameter *cp,    Uint8 bitsPerSample,    double ratio,    OFString& derivationDescription) const;  /** 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;};#endif/* * CVS/RCS Log * $Log: djencsps.h,v $ * Revision 1.2  2005/12/08 16:59:34  meichel * Changed include path schema for all DCMTK header files * * Revision 1.1  2001/11/13 15:56:28  meichel * Initial release of module dcmjpeg * * */

⌨️ 快捷键说明

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