SiDicomDataSet Class |
DICOM data.
Namespace: OIV.VolumeViz.Readers.Dicom
The SiDicomDataSet type exposes the following members.
Name | Description | |
---|---|---|
![]() | Clone | Create a clone of the current data set. |
![]() | Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | GetElement(UInt64) | Get the n-th element of this data set. |
![]() | GetElement(SoDicomTag) | Get an element of this data set. |
![]() | GetElementBufferValue | Shortcut to extract an element's buffer value. |
![]() | GetElementDoubleValue | Shortcut to extract a DOUBLE element's value. |
![]() | GetElementIntValue | Shortcut to extract a INT element's value. |
![]() | GetElementStringValue | Shortcut to extract a STRING element's value. |
![]() | GetElementUIntValue | Shortcut to extract a UINT element's value. |
![]() | GetElementValue | Shortcut to get an element's value fast. |
![]() | GetHashCode |
Overrides GetHashCode().
(Inherited from SoNetBase.) |
![]() | GetLength | Get the number of elements in the data set. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Access data in a DICOM data object.
DICOM is a widely used file format for storing medical image data (CT, MRI, etc), defined by the National Electrical Manufacturers Association (NEMA) (http://dicom.nema.org).
This class, along with OIV.VolumeViz.Readers.Dicom.SoDicomTag, OIV.VolumeViz.Readers.Dicom.SiDicomElement, OIV.VolumeViz.Readers.Dicom.SiDicomValue and OIV.VolumeViz.Readers.Dicom.SiDicomSequence, allows an application to iterate over or randomly access all the attributes in a DICOM data object. This includes attributes that are not used by VolumeViz for rendering.
This class cannot directly open a DICOM file. An OIV.VolumeViz.Readers.Dicom.SiDicomDataSet object can be requested from an OIV.VolumeViz.Readers.SoVRDicomFileReader object or an OIV.VolumeViz.Readers.SoVRDicomData object using the getDicomDataSet() method.