Represents a WPF module for managing camera events within the WPF application. More...
Inherits MWSDK.NetCore.Modules.CameraModuleBase, and IDisposable.
Public Member Functions | |
| void | Dispose () |
| INTERNAL USE ONLY! | |
Events | |
| EventHandler< byte[]>? | FrameReady |
| Occurs when a new frame is ready to be processed. | |
| EventHandler< byte[]>? | RecordedFrameReady |
| Occurs when a recorded frame is ready for processing or display. | |
Represents a WPF module for managing camera events within the WPF application.
| EventHandler<byte[]>? MWSDK.Wpf.Modules.CameraModule.FrameReady |
Occurs when a new frame is ready to be processed.
This event provides the raw frame data as a byte array. Subscribers can use this data for further processing, such as rendering or saving the frame.
| EventHandler<byte[]>? MWSDK.Wpf.Modules.CameraModule.RecordedFrameReady |
Occurs when a recorded frame is ready for processing or display.
This event is triggered after a frame has been recorded by the camera module. The event provides the recorded frame data as a byte array.