| 34 | } |
| 35 | |
| 36 | void start_track_rec ( |
| 37 | correlation_tracker& tracker, |
| 38 | py::array img, |
| 39 | const rectangle& bounding_box |
| 40 | ) |
| 41 | { |
| 42 | drectangle dbounding_box(bounding_box); |
| 43 | start_track(tracker, img, dbounding_box); |
| 44 | } |
| 45 | |
| 46 | double update ( |
| 47 | correlation_tracker& tracker, |
nothing calls this directly
no test coverage detected