diff --git a/AIParkingApplication/Camera.cs b/AIParkingApplication/Camera.cs index 52c8dc0..0d4c5ec 100644 --- a/AIParkingApplication/Camera.cs +++ b/AIParkingApplication/Camera.cs @@ -13,7 +13,6 @@ namespace AIParkingApplication public volatile Mat CurrentFrame; public event CameraEvent OnVideoFrameReceived; - public event CameraEvent OnOneVideoFrameRequested; public event CameraEvent OnOpenVideoStreamFailed; public Camera(string streamUrl) @@ -65,7 +64,6 @@ namespace AIParkingApplication if (isFrameRequested) { CurrentFrame = videoFrame; - OnOneVideoFrameRequested?.Invoke(videoFrame); isFrameRequested = false; } }