Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(From 2023 Java Training)
(From 2023 Java Training)
Line 1: Line 1:
 
= From 2023 Java Training =
 
= From 2023 Java Training =
  
 +
== Prepared Labs ==
 
** [https://spectrum.ieee.org/the-top-programming-languages-2023 2023 Top Programming Languages]
 
** [https://spectrum.ieee.org/the-top-programming-languages-2023 2023 Top Programming Languages]
 
* [[FTC Power Up a Motor 20230911]]
 
* [[FTC Power Up a Motor 20230911]]
Line 8: 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 Make Coding Easier with Methods 20230112]] - Exercise: support the Mecanum drivetrain.
+
 
*
+
== Lab Explorations ==
 +
*  
 
* [[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:32, 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