Conversation
- Integrate ArUco dictionaries: 4x4, 5x5, 6x6, 7x7 with varying sizes (50-1000). - Include ArUcoMIP36h12 family support. - Update Python wrappers and docstrings to expose new families. - Update C and OpenCV demo examples to support ArUco family selection. - Add quick_decode tests for all new ArUco families.
christian-rauch
left a comment
There was a problem hiding this comment.
How are the "tagAruco" files generated? Since this adds quite a few files to the repo, maybe we should add a new "tag" subfolder and place them there?
|
This work was originally carried out by @s-trinh
The code provided in this issue for generating the 36h11 family was used. I agree that moving all |
Adding a tag folder breaks backward compatibility with previous releases. Users will need to update their code from |
Yes, I wouldn't do this for the old tags as this breaks the paths as you suggested. We can leave these 18 files, or at least the headers where they are currently. But because you add many more files, I would prefer to see them in a subfolder. Maybe let's call this just |
|
@christian-rauch Done |
…uco folder See PR AprilRobotics/apriltag#436 Update also the README.VISP file that ecplains changes introduced in apriltag 3rdparty
|
Can you address the reported compilation errors in the CI and squash your fixes into the commits again? One of the reported errors is: |
|
Can you squash your fixes into the commit that caused the issue in the first place? |
This PR introduces native support for ArUco tag families.
Integrated the ArUco dictionaries into the AprilTag ecosystem. This allows users to detect ArUco markers using the robust AprilTag 3 detector without needing external conversion tools.
This PR replaces #428 that was closed.