Conversation
There was a problem hiding this comment.
Store with git lfs.
https://dev.to/mishmanners/how-to-use-git-lfs-to-store-big-files-on-github-2b2e
There was a problem hiding this comment.
This is a good start, but I'd like to see this be a ROS node w/ the relevant parameters that rather than writing to a CSV file, it will publish messages on a topic that has the information that you would write to the CSV. Most of your logic would stay the same.
@Rishav-N thoughts? ^
There was a problem hiding this comment.
Agreed. @AbuWabu3697 rewrite this as a ros node and write to the vision_msgs/Detection2DArray topic
The format of the message should be vision_msgs/msg/Detection2DArray. Check:
(https://docs.ros.org/en/lunar/api/vision_msgs/html/msg/Detection2DArray.html)
Each Detection2D in the array should be formatted like this:
(https://docs.ros.org/en/lunar/api/vision_msgs/html/msg/Detection2D.html)
Check the types for everything Detection2D expects using the links. You have all this from your cv results in the code below you just have to put it in this format and publish to the topic.
Your current code has to be executed as a script. We don't want this instead we want it to be launched as a ros node here: src/subsystems/navigation/athena_planner/launch/nav2_nodes.launch.py. Then we can utilize this in the behavior tree.
With the live logger and the best.pt file