Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(Lab Explorations)
(Prepared Labs)
Line 6: Line 6:
 
* [[FTC Move a Distance 20230919]]
 
* [[FTC Move a Distance 20230919]]
 
* [[FTC Read Colors 20231017]]
 
* [[FTC Read Colors 20231017]]
* [[FTC CanDo with a Color Sensor 20231108]] -- Optional --
+
** [[FTC CanDo with a Color Sensor 20231108]] -- Optional --
 
* [[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]]

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