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

📄 dcrlerp.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 H
字号:
/* * *  Copyright (C) 1994-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:  dcmdata * *  Author:  Marco Eichelberg * *  Purpose: representation parameter for RLE * *  Last Update:      $Author: meichel $ *  Update Date:      $Date: 2005/12/08 16:28:40 $ *  Source File:      $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcmtk/dcmdata/dcrlerp.h,v $ *  CVS/RCS Revision: $Revision: 1.2 $ *  Status:           $State: Exp $ * *  CVS/RCS Log at end of file * */#ifndef DCRLERP_H#define DCRLERP_H#include "dcmtk/config/osconfig.h"#include "dcmtk/dcmdata/dcpixel.h" /* for class DcmRepresentationParameter *//** representation parameter for RLE. *  This is actually a dummy class since there are no compression *  options in the RLE algorithm. */class DcmRLERepresentationParameter: public DcmRepresentationParameter{public:  /// constructor  DcmRLERepresentationParameter();  /// copy constructor  DcmRLERepresentationParameter(const DcmRLERepresentationParameter& arg);  /// destructor  virtual ~DcmRLERepresentationParameter();    /** this methods creates a copy of type DcmRepresentationParameter *   *  it must be overweritten in every subclass.   *  @return copy of this object   */  virtual DcmRepresentationParameter *clone() const;  /** returns the class name as string.   *  can be used in operator== as poor man's RTTI replacement.   */  virtual const char *className() const;  /** compares an object to another DcmRepresentationParameter.   *  Implementation must make sure that classes are comparable.   *  @param arg representation parameter to compare with   *  @return true if equal, false otherwise.   */  virtual OFBool operator==(const DcmRepresentationParameter &arg) const;};#endif/* * CVS/RCS Log * $Log: dcrlerp.h,v $ * Revision 1.2  2005/12/08 16:28:40  meichel * Changed include path schema for all DCMTK header files * * Revision 1.1  2002/06/06 14:52:38  meichel * Initial release of the new RLE codec classes *   and the dcmcrle/dcmdrle tools in module dcmdata * * */

⌨️ 快捷键说明

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