Package com.pixelmed.dicom
Class SUVTransform
- java.lang.Object
-
- com.pixelmed.dicom.SUVTransform
-
public class SUVTransform extends java.lang.Object
A transformation constructed from a DICOM attribute list that extracts those attributes which describe how stored pixel values are translated into PET SUV values.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
SUVTransform.SingleSUVTransform
-
Constructor Summary
Constructors Constructor Description SUVTransform(AttributeList list)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static long
deriveScanDateTimeFromHalfLifeAcquisitionDateTimeFrameReferenceTimeAndActualFrameDuration(AttributeList list)
SUVTransform.SingleSUVTransform
getSingleSUVTransform(int frame)
java.lang.String
toString(int frame, double storedValue)
Given a stored pixel value, return a string containing a description of all known SUV that can be derived from it.java.lang.String
toString(int frame, int storedValue)
Given a stored pixel value, return a string containing a description of all known SUV that can be derived from it.
-
-
-
Constructor Detail
-
SUVTransform
public SUVTransform(AttributeList list)
- Parameters:
list
- the dataset of an image object to be searched for transformations
-
-
Method Detail
-
deriveScanDateTimeFromHalfLifeAcquisitionDateTimeFrameReferenceTimeAndActualFrameDuration
public static long deriveScanDateTimeFromHalfLifeAcquisitionDateTimeFrameReferenceTimeAndActualFrameDuration(AttributeList list)
-
getSingleSUVTransform
public SUVTransform.SingleSUVTransform getSingleSUVTransform(int frame)
-
toString
public java.lang.String toString(int frame, int storedValue)
Given a stored pixel value, return a string containing a description of all known SUV that can be derived from it.- Parameters:
frame
- numbered from zero; needed to select which transform if frame-specificstoredValue
- the actual stored pixel value to look up
-
toString
public java.lang.String toString(int frame, double storedValue)
Given a stored pixel value, return a string containing a description of all known SUV that can be derived from it.- Parameters:
frame
- numbered from zero; needed to select which transform if frame-specificstoredValue
- the actual stored pixel value to look up
-
-