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

📄 dvpspl.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 H
字号:
/* * *  Copyright (C) 1998-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: dcmpstat * *  Author: Marco Eichelberg * *  Purpose: *    classes: DVPSPresentationLUT * *  Last Update:      $Author: meichel $ *  Update Date:      $Date: 2005/12/08 16:03:55 $ *  CVS/RCS Revision: $Revision: 1.12 $ *  Status:           $State: Exp $ * *  CVS/RCS Log at end of file * */#ifndef __DVPSPL_H__#define __DVPSPL_H__#include "dcmtk/config/osconfig.h"    /* make sure OS specific configuration is included first */#include "dcmtk/ofstd/ofstring.h"#include "dcmtk/dcmdata/dctk.h"#include "dcmtk/dcmpstat/dvpstyp.h"     /* for enum types */struct T_DIMSE_Message;class DicomImage;class DiLookupTable;/** the representation of a Presentation LUT Content SQ item for Stored Print */  class DVPSPresentationLUT{public:  /// default constructor  DVPSPresentationLUT();    /// copy constructor  DVPSPresentationLUT(const DVPSPresentationLUT& copy);  /** clone method.   *  @return a pointer to a new DVPSPresentationLUT object containing   *  a copy of this object.   */  DVPSPresentationLUT *clone() { return new DVPSPresentationLUT(*this); }  /// destructor  virtual ~DVPSPresentationLUT();  /** resets the object to initial state.   *  After this call, the object is in the same state as after   *  creation with the default constructor.   */  void clear();  /** reads an Presentation LUT from a DICOM dataset.   *  The DICOM elements of the referenced item are copied   *  from the dataset to this object.   *  The completeness of the item (presence of all required elements,   *  value multiplicity) is checked.   *  If this method returns an error code, the object is in undefined state afterwards.   *  @param dset the item of the PresentationLUTContentSequence from which the data is to be read   *  @param withSOPInstance true if SOPinstanceUID should be read (when used with Stored Print).   *  @return EC_Normal if successful, an error code otherwise.   */  OFCondition read(DcmItem &dset, OFBool withSOPInstance);    /** writes the Presentation LUT managed by this object to a DICOM dataset.   *  Copies of the DICOM element managed by this object are inserted into   *  the DICOM dataset.   *  @param dset the the item of the PresentationLUTContentSequence to which the data is written   *  @param withSOPInstance true if SOPinstanceUID should be written (when used with Stored Print).   *  @return EC_Normal if successful, an error code otherwise.   */  OFCondition write(DcmItem &dset, OFBool withSOPInstance);  /** checks whether current presentation LUT is inverse, i.e.   *  shape is INVERSE or first LUT entry larger than last LUT entry.   */  OFBool isInverse();  /** gets the current Presentation LUT type.   *  @return the current presentation LUT type   */  DVPSPresentationLUTType getType() { return presentationLUT; }  /** gets a description of the Presentation LUT in terms of   *  its restrictions for use with a Print SCP that requires   *  Presentation LUT number of entries to match the bit depth   *  of the image pixel data.   *  @return the current presentation LUT alignment type   */  DVPSPrintPresentationLUTAlignment getAlignment();    /** checks if a real Presentation LUT (not shape) is available.   *  @return OFTrue if this object contains   *    a presentation LUT, no matter if it is activated or not.   *    Returns OFFalse otherwise.   */  OFBool haveTable();  /** gets a description of the current presentation LUT.   *  For well-known presentation LUT shapes, a standard text   *  is returned. For presentation LUTs, the LUT explanation   *  is returned if it exists and a standard text otherwise.   *  This method never returns NULL.   *  @return a pointer to a string describing the current presentation LUT.   */  const char *getCurrentExplanation();  /** returns the LUT explanation of the presentation LUT if it exists and is non-empty.    *  Otherwise returns NULL.   *  @return a string pointer   */  const char *getLUTExplanation();  /** returns the SOP instance UID of the presentation LUT if present.    *  Otherwise returns NULL.   *  @return a string pointer   */  const char *getSOPInstanceUID();  /** stores a presentation lookup table and activates it.   *  The LUT is copied. If the method returns EC_Normal,   *  any old presentation LUT is overwritten.   *  If the method returns an error code, an old LUT is left unchanged.   *  @param lutDescriptor the LUT Descriptor in DICOM format (VM=3)   *  @param lutData the LUT Data in DICOM format   *  @param lutExplanation the LUT Explanation in DICOM format, may be empty.   *  @return EC_Normal if successful, an error code otherwise.   */   OFCondition setLUT(    DcmUnsignedShort& lutDescriptor,    DcmUnsignedShort& lutData,    DcmLongString& lutExplanation);  /** sets the current Presentation LUT type.   *  DVPSP_table can only be used if the object   *  contains a lookup table, i.e. if haveTable() returns OFTrue.   *  @param newType the new presentation LUT type.   *  @return EC_Normal if successful, an error code otherwise.   */  OFCondition setType(DVPSPresentationLUTType newType);  /** inverts presentation LUT or presentation state LUT shape.   *  @return EC_Normal upon success, an error code otherwise.   */  OFCondition invert();  /** activates the current presentation transform in the given DicomImage.   *  @param image the DicomImage for which the presentation transform is to be set.   *  @param printLUT OFTrue if presentation LUT is activated for print bitmap rendering   *    (in this case there is no implicit scaling of the input width of the LUT and,   *    therefore, the VOI transformation - which is absent for print - is used),   *    OFFalse otherwise (softcopy rendering, default)   *  @return OFTrue if successful, OFFalse otherwise.   */  OFBool activate(DicomImage *image, OFBool printLUT = OFFalse);  /** activates the inverse LUT of the current presentation LUT (if any) in the given DicomImage.   *  Presentation LUT shape is not supported by this method.   *  @param image the DicomImage for which the inverse presentation LUT is to be set.   *  @return OFTrue if successful, OFFalse otherwise.   */  OFBool activateInverseLUT(DicomImage *image);  /** sets a new log stream   *  @param stream new log stream, NULL for default logstream   *  @param verbMode verbose mode flag   *  @param dbgMode debug mode flag   */  void setLog(OFConsole *stream, OFBool verbMode, OFBool dbgMode);    /** creates a DiLookupTable instance from the LUT table   *  managed by this object. The returned object must be freed by the caller.   *  @return new DiLookupTable object, may be NULL if no LUT present.   */  DiLookupTable *createDiLookupTable();    /** compares a DiLookupTable instance with the LUT table   *  managed by this object. Returns OFTrue if equal, OFFalse otherwise.   *  @param lut DiLookupTable object to compare with   *  @return comparison, true if equal   */  OFBool compareDiLookupTable(DiLookupTable *lut);  /** sets the SOP instance UID.   *  @param value new attribute value, must not be NULL.   *  @return EC_Normal if successful, an error code otherwise.   */  OFCondition setSOPInstanceUID(const char *value);    /** checks whether the current Presentation LUT (or shape) is   *  legal when used with Supplement 22.   *  @return true if current Presentation LUT is legal for print.   */  OFBool isLegalPrintPresentationLUT();    /** checks whether the current Presentation LUT (or shape)   *  matches the current image bit depth in number of entries and first value mapped.   *  @param is12bit true if the image is 12 bit, false if the image is 8 bit   *  @return true if Presentation LUT matches, false otherwise.   */  OFBool matchesImageDepth(OFBool is12bit);  /** performs a Print SCP N-CREATE operation on a newly created instance of    *  this class. The results of the operation are stored in the objects    *  passed as rsp and rspDataset.   *  @param rqDataset N-CREATE request dataset, may be NULL   *  @param rsp N-CREATE response message   *  @param rspDataset N-CREATE response dataset passed back in this parameter   *  @param matchRequired boolean flag specifying whether the SCP should   *    enforce a rule that all Presentation LUTs must match with the   *    bit depth of the image pixel data.   *  @param supports12Bit boolean flag specifying whether the SCP should   *    allow 12 bit/pixel image data transmission. Affects handling of    *    matching rule.   *  @return OFTrue if operation was successful, OFFalse otherwise.   */  OFBool printSCPCreate(    DcmDataset *rqDataset,     T_DIMSE_Message& rsp,     DcmDataset *& rspDataset,     OFBool matchRequired,    OFBool supports12Bit);private:  /// private undefined assignment operator  DVPSPresentationLUT& operator=(const DVPSPresentationLUT&);	  /// describes active type of presentation LUT.  DVPSPresentationLUTType  presentationLUT;  /// Module=Softcopy_Presentation_LUT, VR=xs, VM=3, Type 1c   DcmUnsignedShort         presentationLUTDescriptor;  /// Module=Softcopy_Presentation_LUT, VR=LO, VM=1, Type 3   DcmLongString            presentationLUTExplanation;  /// Module=Softcopy_Presentation_LUT, VR=xs, VM=1-n, Type 1c   DcmUnsignedShort         presentationLUTData;  /// Module=Presentation_LUT_List, VR=UI, VM=1, Type 1   DcmUniqueIdentifier      sOPInstanceUID;  /** output stream for error messages, never NULL   */  OFConsole *logstream;  /** flag indicating whether we're operating in verbose mode   */  OFBool verboseMode;     /** flag indicating whether we're operating in debug mode   */  OFBool debugMode;};#endif/* *  $Log: dvpspl.h,v $ *  Revision 1.12  2005/12/08 16:03:55  meichel *  Changed include path schema for all DCMTK header files * *  Revision 1.11  2003/08/27 14:59:09  meichel *  Moved all methods of class DVPSPresentationLUT that depend on module dcmimgle *    into a separate implementation file * *  Revision 1.10  2001/09/26 15:36:14  meichel *  Adapted dcmpstat to class OFCondition * *  Revision 1.9  2001/06/01 15:50:19  meichel *  Updated copyright header * *  Revision 1.8  2000/06/09 10:14:11  joergr *  Added support for rendering inverse presentation LUT into print bitmaps. * *  Revision 1.7  2000/06/07 14:20:18  joergr *  Added support for rendering "hardcopy" and "softcopy" presentation LUTs. * *  Revision 1.6  2000/06/02 16:00:49  meichel *  Adapted all dcmpstat classes to use OFConsole for log and error output * *  Revision 1.5  2000/05/31 12:56:39  meichel *  Added initial Print SCP support * *  Revision 1.4  2000/03/08 16:28:54  meichel *  Updated copyright header. * *  Revision 1.3  1999/10/07 17:21:49  meichel *  Reworked management of Presentation LUTs in order to create tighter *    coupling between Softcopy and Print. * *  Revision 1.2  1999/09/24 15:23:46  meichel *  Print spooler (dcmprtsv) now logs diagnostic messages in log files *    when operating in spool mode. * *  Revision 1.1  1999/07/30 13:34:49  meichel *  Added new classes managing Stored Print objects * * */

⌨️ 快捷键说明

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