Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(From 2023 Java Training)
(Lab Explorations)
Line 11: Line 11:
  
 
== Lab Explorations ==
 
== Lab Explorations ==
*  
+
* [[FTC Using Android Debugging Bridge to Locate Bugs 20231108]]
 
* [[FTC Compute Move Distance 20221014]]
 
* [[FTC Compute Move Distance 20221014]]
 
* [[FTC Compute a 90 Degree Turn 20221104]]
 
* [[FTC Compute a 90 Degree Turn 20221104]]

Revision as of 11:35, 8 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