A plug and play module for detecting AprilTags on an FTC robot, designed to be used from EasyOpenCV
IMPORTANT NOTE: This assumes you have already installed EasyOpenCV!
-
Download the latest release AAR from Maven Central. Release v1.1.1 is located here.
-
In the OnBotJava console, click the Upload Files button (to the left of the trash can), select the
.aar
file you just downloaded, and wait while OnBotJava processes the library. -
Congrats, you're ready to go! Now check out the example OpModes and pipeline in the examples directory.
IMPORTANT NOTE: This assumes you have already installed EasyOpenCV!
-
Open your FTC SDK Android Studio project
-
Open the
build.gradle
file for the TeamCode module: -
At the bottom, add this:
dependencies { implementation 'org.openftc:apriltag:1.1.1' }
-
Now perform a Gradle Sync:
-
Congrats, you're ready to go! Now check out the example OpModes and pipeline in the examples directory.
You can download a PDF with the first 20 tags of the 36h11 family here
Alternatively, you can find PNGs here
- Fixes OpenCV-Repackaged dependency to be
compileOnly
- Removes need to link against OpenCV native library
- Fixes buffer overrun when creating JNI detector context
- Prints library version in static initializer
- Updates to latest version of AprilTag as of 30 March 2022
- Fixes small memory leak for frames where no detections were found
- Protects against NULL pointers in native JNI code
- Updates
AprilTagDetectionPipeline
to create the native detector in the constructor instead of in init(). NOTE: You will need to copy-paste the updated file, as this file is not part of the binary release!
- Initial release