(self, target_x, target_y, target_cls)
| 259 | self.setup_hardware() |
| 260 | |
| 261 | def visualize_target(self, target_x, target_y, target_cls): |
| 262 | if (cfg.show_window and cfg.show_target_line) or (cfg.show_overlay and cfg.overlay_show_target_line): |
| 263 | visuals.draw_target_line(target_x, target_y, target_cls) |
| 264 | |
| 265 | def visualize_prediction(self, target_x, target_y, target_cls): |
| 266 | if (cfg.show_window and cfg.show_target_prediction_line) or (cfg.show_overlay and cfg.overlay_show_target_prediction_line): |
no test coverage detected