📄 djdecsv1.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: Codec class for decoding JPEG Lossless Selection Value 1 (8/12/16-bit) * * Last Update: $Author: meichel $ * Update Date: $Date: 2005/12/08 16:59:21 $ * Source File: $Source: /share/dicom/cvs-depot/dcmtk/dcmjpeg/include/dcmtk/dcmjpeg/djdecsv1.h,v $ * CVS/RCS Revision: $Revision: 1.2 $ * Status: $State: Exp $ * * CVS/RCS Log at end of file * */#ifndef DJDECSV1_H#define DJDECSV1_H#include "dcmtk/config/osconfig.h"#include "dcmtk/dcmjpeg/djcodecd.h" /* for class DJCodecDecoder *//** Decoder class for JPEG Lossless Selection Value 1 (8/12/16-bit) */class DJDecoderP14SV1: public DJCodecDecoder{public: /// default constructor DJDecoderP14SV1(); /// destructor virtual ~DJDecoderP14SV1(); /** returns the transfer syntax that this particular codec * is able to encode and decode. * @return supported transfer syntax */ virtual E_TransferSyntax supportedTransferSyntax() const;private: /** creates an instance of the compression library to be used for decoding. * @param toRepParam representation parameter passed to decode() * @param cp codec parameter passed to decode() * @param bitsPerSample bits per sample for the image data * @param isYBR flag indicating whether DICOM photometric interpretation is YCbCr * @return pointer to newly allocated decoder object */ virtual DJDecoder *createDecoderInstance( const DcmRepresentationParameter * toRepParam, const DJCodecParameter *cp, Uint8 bitsPerSample, OFBool isYBR) const; };#endif/* * CVS/RCS Log * $Log: djdecsv1.h,v $ * Revision 1.2 2005/12/08 16:59:21 meichel * Changed include path schema for all DCMTK header files * * Revision 1.1 2001/11/13 15:56:21 meichel * Initial release of module dcmjpeg * * */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -