Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(TensorFlow Video Training)
(TensorFlow Video Training)
Line 22: Line 22:
 
* [https://ftc-docs.firstinspires.org/en/latest/ftc_ml/ FTC Machine Learning]
 
* [https://ftc-docs.firstinspires.org/en/latest/ftc_ml/ FTC Machine Learning]
  
* [https://ftc-docs.firstinspires.org/en/latest/programming_resources/vision/tensorflow_cs_2023/tensorflow-cs-2023.html Tensorflow CS 2023
+
* [https://ftc-docs.firstinspires.org/en/latest/programming_resources/vision/tensorflow_cs_2023/tensorflow-cs-2023.html Tensorflow CS 2023]
  
  

Revision as of 16:09, 30 October 2023

From 2023 Java Training

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