FTC 2024 Season

From wikidb
Revision as of 17:14, 27 November 2023 by Edc (Talk | contribs)

Jump to: navigation, search

From 2023 Java Training

Prepared Labs

Lab Explorations

TensorFlow Video Training


 /**
  * Initialize the Vuforia localization engine.
  */
 private void initVuforia() {
   /*
    * Configure Vuforia by creating a Parameter object, and passing it to the Vuforia engine.
    */
   VuforiaLocalizer.Parameters parameters = new VuforiaLocalizer.Parameters();

   parameters.vuforiaLicenseKey = VUFORIA_KEY;
   parameters.cameraDirection = CameraDirection.BACK;

   //  Instantiate the Vuforia engine
   vuforia = ClassFactory.getInstance().createVuforia(parameters);

   // Loading trackables is not necessary for the TensorFlow Object Detection engine.
 }

Apriltag Notes

References

Maintenance

Github fix references