start_object_detection.srv 669 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Starts object detection, if not automatically enabled with the parameter `object_detection/od_enabled`
  2. # OD Model
  3. # '0': MULTI_CLASS_BOX - '1': MULTI_CLASS_BOX_ACCURATE - '2': HUMAN_BODY_FAST - '3': HUMAN_BODY_ACCURATE
  4. int8 model
  5. # Minimum Confidence level
  6. float32 confidence
  7. # MAx detection range
  8. float32 max_range
  9. # Object tracking
  10. bool tracking
  11. # Body Fitting
  12. bool sk_body_fitting
  13. # Detect people (valid for Multi-class model)
  14. bool mc_people
  15. # Detect vehicles
  16. bool mc_vehicles
  17. # Detect bags
  18. bool mc_bag
  19. # Detect animals
  20. bool mc_animal
  21. # Detect electronic devices
  22. bool mc_electronics
  23. # Detect fruits and vegetables
  24. bool mc_fruit_vegetable
  25. ---
  26. bool done