Default constructor
| 32 | |
| 33 | // Default constructor |
| 34 | ObjectDetection::ObjectDetection() |
| 35 | : display_box_text(1.0) |
| 36 | , display_boxes(1.0) |
| 37 | { |
| 38 | // Init effect metadata |
| 39 | init_effect_details(); |
| 40 | |
| 41 | // We haven’t loaded any protobuf yet, so there's nothing to pick. |
| 42 | selectedObjectIndex = -1; |
| 43 | } |
| 44 | |
| 45 | // Init effect settings |
| 46 | void ObjectDetection::init_effect_details() |
nothing calls this directly
no outgoing calls
no test coverage detected