1234567891011121314151617181920212223242526 |
- using sl;
- public interface IZEDManager
- {
-
-
-
- bool IsObjectDetectionRunning { get; }
- bool EstimateInitialPosition { get; }
- DETECTION_MODEL ObjectDetectionModel { get; }
-
-
-
-
- event ZEDManager.onNewDetectionTriggerDelegate OnObjectDetection;
-
-
-
-
- event ZEDManager.OnZEDManagerReady OnZEDReady;
- void StartObjectDetection();
- }
|