Class SiDicomSequence
- java.lang.Object
-
- com.openinventor.inventor.Inventor
-
- com.openinventor.volumeviz.readers.dicom.SiDicomSequence
-
public class SiDicomSequence extends Inventor
DICOM data. Access data in a DICOM sequence.A DICOM sequence contains a vector of nested data sets, called "items" in this context.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
-
Field Summary
-
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SiDicomSequence
clone()
Create a clone of the sequence.SiDicomDataSet
getItem(long idx)
Get the n-th nested data set.long
getLength()
Get the number of nested data sets contained in this sequence.-
Methods inherited from class com.openinventor.inventor.Inventor
dispose, getNativeResourceHandle
-
-
-
-
Method Detail
-
getLength
public long getLength()
Get the number of nested data sets contained in this sequence.
-
clone
public SiDicomSequence clone()
Create a clone of the sequence.
-
getItem
public SiDicomDataSet getItem(long idx)
Get the n-th nested data set.- Parameters:
idx
- the index of the nested data set to get.- Returns:
- a pointer to the n-th data set or NULL if idx is greater than the length of the sequence.
-
-