Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(Prepared Labs)
(Prepared Labs)
Line 9: Line 9:
 
* [[FTC Set Up the Mecanum Training Platform 20231025]]
 
* [[FTC Set Up the Mecanum Training Platform 20231025]]
 
* [[FTC Make Coding Easier with Methods 20231025]]
 
* [[FTC Make Coding Easier with Methods 20231025]]
 +
* [[FTC Bring Up HuskyLens 20231127]]
  
 
== Lab Explorations ==
 
== Lab Explorations ==

Revision as of 17:14, 27 November 2023

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