Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(TensorFlow Video Training)
(TensorFlow Video Training)
Line 23: Line 23:
  
 
* [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
 +
  
 
* [https://ftc-docs.firstinspires.org/en/latest/programming_resources/vision/java_tfod_opmode/java-tfod-opmode.html Java TFOD Opmode Java]
 
* [https://ftc-docs.firstinspires.org/en/latest/programming_resources/vision/java_tfod_opmode/java-tfod-opmode.html Java TFOD Opmode Java]
Line 33: Line 34:
 
     */
 
     */
 
     VuforiaLocalizer.Parameters parameters = new VuforiaLocalizer.Parameters();
 
     VuforiaLocalizer.Parameters parameters = new VuforiaLocalizer.Parameters();
 
+
 
     parameters.vuforiaLicenseKey = VUFORIA_KEY;
 
     parameters.vuforiaLicenseKey = VUFORIA_KEY;
 
     parameters.cameraDirection = CameraDirection.BACK;
 
     parameters.cameraDirection = CameraDirection.BACK;
 
+
 
     //  Instantiate the Vuforia engine
 
     //  Instantiate the Vuforia engine
 
     vuforia = ClassFactory.getInstance().createVuforia(parameters);
 
     vuforia = ClassFactory.getInstance().createVuforia(parameters);
 
+
 
     // Loading trackables is not necessary for the TensorFlow Object Detection engine.
 
     // Loading trackables is not necessary for the TensorFlow Object Detection engine.
 
   }
 
   }

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