PixelValuesByFrameGeneric Method (DicomImage)
Returns an array of pixel values for a frame, optionally transformed via the modality transformation
public System.Array PixelValuesByFrameGeneric(
System.int ,
System.bool
)
public function PixelValuesByFrameGeneric(
: System.Integer;
: System.Boolean
): System.Array;
public function PixelValuesByFrameGeneric(
: System.int,
: System.boolean
) : System.Array;
public: System.Array* PixelValuesByFrameGeneric(
System.int ,
System.bool
)
public:
System.Array^ PixelValuesByFrameGeneric(
System.int ,
System.bool
)
'Declaration
Public Function PixelValuesByFrameGeneric( _
ByVal As System.Integer, _
ByVal As System.Boolean _
) As System.Array
'Usage
Dim instance As DicomImage
Dim frame As System.Integer
Dim modalityTransform As System.Boolean
Dim value As System.Array
value = instance.PixelValuesByFrameGeneric(frame, modalityTransform)
Parameters
- frame
- The 1-based frame number to retrieve
- modalityTransform
- Controls whether to apply the scale/offset or Modality LUT if present
Return Value
Array of values representing the (possibly transformed) pixel values. Return type is a generic array as opposed to
PixelValuesByFrame which returns a float[]
Target Platforms: .NET CLR 4.8 or higher