DicomFrameResult class

Represents a single processed DICOM frame, ready for rendering.

It encapsulates both the medical metadata extracted from the headers and the raw pixel_data buffer processed by the Rust engine.

Constructors

DicomFrameResult({required DicomMetadata metadata, required Int16List pixelData})
const

Properties

hashCode int
The hash code for this object.
no setteroverride
metadata DicomMetadata
The clinical and technical metadata associated with this frame.
final
pixelData Int16List
A 16-bit integer buffer containing the raw pixel values. This buffer maintains full diagnostic precision and is designed for GPU consumption via fragment shaders.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override