Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(Prepared Labs)
(TensorFlow Video Training)
Line 19: Line 19:
 
* [[FTC Working Through Cell Phone Robot Controller and Driver Station Issues 20230320]]
 
* [[FTC Working Through Cell Phone Robot Controller and Driver Station Issues 20230320]]
 
* [[FTC Color Sensor 20230424]] Small edits to the 20200311 version for Benson
 
* [[FTC Color Sensor 20230424]] Small edits to the 20200311 version for Benson
 +
 +
= Maintenance =
 +
 +
* [http://10.0.0.9/wiki/index.php/FTC_TrainingBot_Upgrade_20230901 Upgrade Software]
  
 
= TensorFlow Video Training =
 
= TensorFlow Video Training =

Revision as of 11:35, 28 November 2023

From 2023 Java Training

Prepared Labs

Lab Explorations

Maintenance

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