Namespace containing functions related to tensorflow object detection operations on images.
More...
|
struct | TensorflowObject |
| Represents a single depth object detection from a tensorflow model. Stores all information about a specific object detection. More...
|
|
Namespace containing functions related to tensorflow object detection operations on images.
- Author
- clayjay3 (clayt.nosp@m.onra.nosp@m.ycowe.nosp@m.n@gm.nosp@m.ail.c.nosp@m.om)
- Date
- 2023-10-23
◆ FindObjectCenter()
◆ Detect()
Detect objects in the given image using a tensorflow model.
- Parameters
-
cvFrame | - The normal BGR or BGRA image from the camera. |
tfNeuralNetwork | - The tensorflow model to use for detection. |
- Returns
- std::vector<TensorflowObject> - A vector containing all of the inferenced objects from the model.
- Author
- clayjay3 (clayt.nosp@m.onra.nosp@m.ycowe.nosp@m.n@gm.nosp@m.ail.c.nosp@m.om)
- Date
- 2023-10-23
100 {
101
103 return std::vector<TensorflowObject>();
104 }