Coverage for orchestr_ant_ion / yolo / ui / __init__.py: 0%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-03-19 08:36 +0000

1"""UI overlays for YOLO monitoring.""" 

2 

3from __future__ import annotations 

4 

5from orchestr_ant_ion.yolo.ui.draw import ( 

6 draw_2d_running_map, 

7 draw_cpu_process_history_plot, 

8 draw_detections, 

9 get_color_by_percent, 

10) 

11 

12 

13__all__ = [ 

14 "draw_2d_running_map", 

15 "draw_cpu_process_history_plot", 

16 "draw_detections", 

17 "get_color_by_percent", 

18]