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

📄 dcpixel.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 H
📖 第 1 页 / 共 2 页
字号:
    /** Initialize a streaming operation (read, write)     */    virtual void transferInit();    /** This function reads the data value of a pixel data attribute     *  which is captured in the input stream and captures this     *  information in this. This function takes into account, if the     *  pixel data is captured in native (uncompressed) or encapsulated     *  (compressed) format.     *  @param inStream      The stream which contains the information.     *  @param ixfer         The transfer syntax which was used to encode the     *                       information in inStream.     *  @param glenc         Encoding type for group length; specifies what     *                       will be done with group length tags.     *  @param maxReadLength Maximum read length for reading an attribute value.     *  @return status, EC_Normal if successful, an error code otherwise     */    virtual OFCondition read(DcmInputStream & inStream,                             const E_TransferSyntax ixfer,                             const E_GrpLenEncoding glenc = EGL_noChange,                             const Uint32 maxReadLength = DCM_MaxReadLength);    /** writes a representation conforming to the transfer syntax     *  It does not create a representation. If no conforming     *  representation exists,  an error code is returned.     *  The written representation is the new current representation     */    virtual OFCondition write(        DcmOutputStream & outStream,        const E_TransferSyntax oxfer,        const E_EncodingType enctype = EET_UndefinedLength);    /** write object in XML format     *  @param out output stream to which the XML document is written     *  @param flags optional flag used to customize the output (see DCMTypes::XF_xxx)     *  @return status, EC_Normal if successful, an error code otherwise     */    virtual OFCondition writeXML(ostream &out,                                 const size_t flags = 0);    /** special write method for creation of digital signatures     */    virtual OFCondition writeSignatureFormat(        DcmOutputStream & outStream,	const E_TransferSyntax oxfer,	const E_EncodingType enctype = EET_UndefinedLength);    virtual OFCondition loadAllDataIntoMemory(void);    /** Finalize a streaming operation (read, write)     */    virtual void transferEnd();    /** test if it is possible to choose the representation in the parameters     */    OFBool canChooseRepresentation(        const E_TransferSyntax repType,        const DcmRepresentationParameter * repParam);    /** choose a specific representation. if representation does not exist     *  it is created (if possible).     *  if repParam is zero, a representation is chosen or created that     *  is equal to the default representation parameters     */    OFCondition chooseRepresentation(        const E_TransferSyntax repType,        const DcmRepresentationParameter * repParam,        DcmStack & stack);    /** Inserts an original encapsulated representation. current and original     *  representations are changed, all old representations are deleted     */    void putOriginalRepresentation(        const E_TransferSyntax repType,        const DcmRepresentationParameter * repParam,        DcmPixelSequence * pixSeq);    /** The following two put-methods insert an original unencapsulated     *  representation. current and original representations are changed,     *  all old representations are deleted. The array data is copied.     */    virtual OFCondition putUint8Array(        const Uint8 * byteValue,        const unsigned long length);    virtual OFCondition putUint16Array(        const Uint16 * wordValue,        const unsigned long length);    /** create an empty Uint8 array of given number of words and set it     */    virtual OFCondition createUint8Array(        const Uint32 numBytes,        Uint8 * & bytes);    /** create an empty Uint16 array of given number of words and set it     */    virtual OFCondition createUint16Array(        const Uint32 numWords,        Uint16 * & words);    /** get a specific exisiting Representation, creates no representation     *  if repParam is NULL, then the representation conforming to the default     *  presentationParameters (defined with the codec) is returned.     */    OFCondition getEncapsulatedRepresentation(        const E_TransferSyntax repType,        const DcmRepresentationParameter * repParam,        DcmPixelSequence * & pixSeq);    /** returns the representation identification (key) consisting of     *  representation type and parameter of the original representation     */    void getOriginalRepresentationKey(        E_TransferSyntax & repType,        const DcmRepresentationParameter * & repParam);    /** returns the representation identification (key) consisting of     *  representation type and parameter of the current representation     */    void getCurrentRepresentationKey(        E_TransferSyntax & repType,        const DcmRepresentationParameter * & repParam);    /** sets the representation identification parameter of the current     *  representation     */    OFCondition setCurrentRepresentationParameter(        const DcmRepresentationParameter * repParam);    /** returns if a specific conforming  representation exists.     */    OFBool hasRepresentation(        const E_TransferSyntax repType,        const DcmRepresentationParameter * repParam = NULL);    /** delete a representation. It is not possible to delete the     *  original representation with this method     */    OFCondition removeRepresentation(        const E_TransferSyntax repType,        const DcmRepresentationParameter * repParam);    /** removes all but the original representation     */    void removeAllButOriginalRepresentations();    /** removes all but the current representation     *  Makes the current representation original     */    void removeAllButCurrentRepresentations();    /** delete original representation and set new original representation.     *  If the new representation does not exist, the original one is not     *  deleted and an error code returns     */    OFCondition removeOriginalRepresentation(        const E_TransferSyntax repType,        const DcmRepresentationParameter * repParam);    /** set or clear the flag that indicates that this pixel data element will be      *  written in uncompressed (defined length) format even if the dataset      *  itself is written in a compressed syntax where pixel data is normally      *  written in encapsulated (undefined length) format. By default this flag      *  is false, unless the dataset was read in an encapsulated transfer syntax      *  and this pixel data element was already present in uncompressed format.     *  This flag should never be enabled for pixel data elements on the main dataset     *  level, only for pixel data elements within the icon image sequence or some     *  other "private" place.     *  @param flag new value of flag     */    void setNonEncapsulationFlag(OFBool flag);};#endif/*** CVS/RCS Log:** $Log: dcpixel.h,v $** Revision 1.28  2005/12/08 16:28:30  meichel** Changed include path schema for all DCMTK header files**** Revision 1.27  2005/05/26 09:06:53  meichel** Renamed isIconImage flag to alwaysUnencapsulated to clarify meaning.**   Added public method DcmPixelData::setNonEncapsulationFlag() that allows**   DcmCodec instances to enable the flag. Improved documentation.**** Revision 1.26  2004/07/01 12:28:25  meichel** Introduced virtual clone method for DcmObject and derived classes.**** Revision 1.25  2004/04/07 13:55:56  meichel** Compressed image datasets containing uncompressed icon images**   are now correctly handled by the parser.**** Revision 1.24  2004/01/16 14:06:20  joergr** Removed acknowledgements with e-mail addresses from CVS log.**** Revision 1.23  2003/06/12 18:21:24  joergr** Modified code to use const_iterators where appropriate (required for STL).**** Revision 1.22  2003/06/12 14:03:24  joergr** Fixed inconsistent API documentation reported by Doxygen.**** Revision 1.21  2003/06/02 16:55:34  meichel** Cleaned up implementation of DcmRepresentationEntry, added doc++ comments**** Revision 1.20  2003/04/17 15:56:59  joergr** Corrected API documentation of createUint8/16Array() methods.**** Revision 1.19  2003/04/01 12:35:12  joergr** Added implementation of createUint8/16Array() methods to DcmPixelData.** Required to work properly with chooseRepresentation() for pixel compression.**** Revision 1.18  2002/12/09 09:31:16  wilkens** Modified/Added doc++ documentation.**** Revision 1.17  2002/12/06 12:49:12  joergr** Enhanced "print()" function by re-working the implementation and replacing** the boolean "showFullData" parameter by a more general integer flag.** Added doc++ documentation.** Made source code formatting more consistent with other modules/files.**** Revision 1.16  2002/08/27 16:55:37  meichel** Initial release of new DICOM I/O stream classes that add support for stream**   compression (deflated little endian explicit VR transfer syntax)**** Revision 1.15  2002/04/25 09:38:48  joergr** Added support for XML output of DICOM objects.**** Revision 1.14  2001/09/25 17:18:34  meichel** Updated abstract class DcmRepresentationParameter for use with dcmjpeg**** Revision 1.13  2001/06/01 15:48:42  meichel** Updated copyright header**** Revision 1.12  2000/11/07 16:56:08  meichel** Initial release of dcmsign module for DICOM Digital Signatures**** Revision 1.11  2000/09/27 08:19:55  meichel** Minor changes in DcmCodec interface, required for future dcmjpeg module.**** Revision 1.10  2000/04/14 15:31:33  meichel** Removed default value from output stream passed to print() method.**   Required for use in multi-thread environments.**** Revision 1.9  2000/03/08 16:26:17  meichel** Updated copyright header.**** Revision 1.8  2000/03/03 14:05:25  meichel** Implemented library support for redirecting error messages into memory**   instead of printing them to stdout/stderr for GUI applications.**** Revision 1.7  2000/02/10 10:50:52  joergr** Added new feature to dcmdump (enhanced print method of dcmdata): write** pixel data/item value fields to raw files.**** Revision 1.6  2000/02/03 16:28:10  joergr** Fixed bug: encapsulated data (pixel items) have never been loaded using** method 'loadAllDataIntoMemory'. Therefore, encapsulated pixel data was** never printed with 'dcmdump'.**** Revision 1.5  1999/03/31 09:24:44  meichel** Updated copyright header in module dcmdata**** Revision 1.4  1998/11/12 16:47:42  meichel** Implemented operator= for all classes derived from DcmObject.**** Revision 1.3  1998/07/15 15:48:50  joergr** Removed several compiler warnings reported by gcc 2.8.1 with** additional options, e.g. missing copy constructors and assignment** operators, initialization of member variables in the body of a** constructor instead of the member initialization list, hiding of** methods by use of identical names, uninitialized member variables,** missing const declaration of char pointers. Replaced tabs by spaces.**** Revision 1.2  1997/07/24 13:08:24  andreas** - Removed const for method DcmRepresentationParameter::copy**** Revision 1.1  1997/07/21 07:54:57  andreas** - New environment for encapsulated pixel representations. DcmPixelData**   can contain different representations and uses codecs to convert**   between them. Codecs are derived from the DcmCodec class. New error**   codes are introduced for handling of representations. New internal**   value representation (only for ident()) for PixelData***/

⌨️ 快捷键说明

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