Classes | |
interface | IDCXELM |
This inteface is used to get and set DICOM Elements and their value. More... | |
interface | IDCXELMIterator |
used for iterating over a collection of elements. More... | |
interface | IDCXOBJ |
A DICOM Object Interface. More... | |
interface | IDCXOBJIterator |
This class is used to iterate over a collection of objects. More... | |
Typedefs | |
typedef long | DICOM_TAG |
Enumerations | |
enum | VR_CODE { VR_CODE_AE , VR_CODE_AS , VR_CODE_AT , VR_CODE_CS , VR_CODE_DA , VR_CODE_DS , VR_CODE_DT , VR_CODE_FL , VR_CODE_FD , VR_CODE_IS , VR_CODE_LO , VR_CODE_LONGTEXT , VR_CODE_OB , VR_CODE_OF , VR_CODE_OW , VR_CODE_PN , VR_CODE_SH , VR_CODE_SL , VR_CODE_SQ , VR_CODE_SS , VR_CODE_ST , VR_CODE_TM , VR_CODE_UI , VR_CODE_UL , VR_CODE_US , VR_CODE_UT , VR_CODE_ox , VR_CODE_xs , VR_CODE_lt , VR_CODE_na , VR_CODE_up , VR_CODE_item , VR_CODE_metainfo , VR_CODE_dataset , VR_CODE_fileFormat , VR_CODE_dicomDir , VR_CODE_dirRecord , VR_CODE_pixelSQ , VR_CODE_pixelItem , VR_CODE_UNKNOWN , VR_CODE_UN , VR_CODE_PixelData , VR_CODE_OverlayData , VR_CODE_UNKNOWN2B } |
Value Representations - DICOM's data types. More... | |
enum | DUMP_OBJECT_OPTIONS { DO_DEFAULT = 0 } |
enum | VIDEO_FORMAT { MPEG2_AT_MAIN_LEVEL = 1 , MPEG2_AT_HIGH_LEVEL , MPEG4 , MPEG4_BD_COMPATIBLE , MPEG4_4_2_2D , MPEG4_4_2_3D , MPEG4_4_2_STEREO , HEVC_MAIN_PROFILE , HEVC_MAIN_10_PROFILE } |
The DICOM Print Service is used to print DICOM Images
typedef long DICOM_TAG |
DICOM Tag is an identifier of a DICOM Data Element. The common notation is (gggg,eeee) where gggg is a hexadecimal number (word) representing a Group and eeee is a hexadecimal number
representing the element. Composed from two WORDS - Group and Element. See DICOM Standard part 6 for a complete dictionary of all DICOM tags. Use the DCXDIC Class to lookup tag names by their number or tag numbers by their name. in MODALIZER SDK, DICOM tags are represented as a long integer where the group is the most significant first two bytes and the element is the last two bytes. For example the Patient Name tag (0010,0010) is represented as 0x00100010
enum DUMP_OBJECT_OPTIONS |
enum VIDEO_FORMAT |
Video Formats compatible with DICOM
Enumerator | |
---|---|
MPEG2_AT_MAIN_LEVEL | |
MPEG2_AT_HIGH_LEVEL | |
MPEG4 |
|
MPEG4_BD_COMPATIBLE |
|
MPEG4_4_2_2D |
|
MPEG4_4_2_3D |
|
MPEG4_4_2_STEREO |
|
HEVC_MAIN_PROFILE |
|
HEVC_MAIN_10_PROFILE |
|
enum VR_CODE |
Value Representations - DICOM's data types.
Every DICOM Element has a unique tag that identifies the element and implicitly determines its data type. The data types in DICOM are called VR's, an acronim for Value Representation. For detailed explanation of VR's see the DICOM Standard part 5.