Can docking use ArUco marker, or must be April Tag? #4799
-
My dock has an ArUco marker, and I just tested aruco_OpenCV is “seeing” the tag. I haven’t calibrated yet though so the x,y is off. can the nav2 docking feature use ArUco marker or do I need to put an April tag on my dock? Does the back onto dock parameter work for camera on front, contacts on rear and AprilTag on the dock not visible during the backing? If I get the bot to a 1cm 2deg heading tolerance, I cad add the 180 spin to my /dock action. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There is no requirement to use any kind of detection solution, you can use whatever makes sense for your applications, including custom camera detectors, AI, QR codes, 3D lidar detection, etc. We just show demos using Apriltags since they're commonly used, supported well in ROS 2, and has Nvidia Isaac GPU acceleration for Jetson users.
Not currently, the sensor has to be in the direction of docking for continuous updates during the docking procedure. There is a PR open trying to implement #4749 but it has been stalled by its author recently and I'm sure would be open to someone else helping get it across the line! See the ticket #4403 |
Beta Was this translation helpful? Give feedback.
There is no requirement to use any kind of detection solution, you can use whatever makes sense for your applications, including custom camera detectors, AI, QR codes, 3D lidar detection, etc. We just show demos using Apriltags since they're commonly used, supported well in ROS 2, and has Nvidia Isaac GPU acceleration for Jetson users.
Not currently, the sensor has to be in the direction of docking for continuous updates during the docking procedure. There is a PR…