DCEFrame
The DCEFrame
interface extends the DSImageData interface and represents an image extracted from video streams (video frame).
interface DCEFrame extends DSImageData {
isDCEFrame: boolean;
toCanvas: () => HTMLCanvasElement;
tag?: VideoFrameTag;
}
isDCEFrame
Flag indicating whether the frame is a DCEFrame
.
toCanvas
Converts the image data into an HTMLCanvasElement for display or further manipulation in web applications.
See Also
tag: VideoFrameTag
Holds extra information about the image data which is extracted from video streams.
See Also