Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(From 2023 Java Training)
(TensorFlow Video Training)
Line 21: Line 21:
 
* [https://github.com/edcepp/FTCEppTensorCode/tree/master/FTCEppTensorCode Github for above]
 
* [https://github.com/edcepp/FTCEppTensorCode/tree/master/FTCEppTensorCode Github for above]
 
* [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/java_tfod_opmode/java-tfod-opmode.html Java TFOD Opmode Java]
 +
  /**
 +
  * 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 =
 
= Apriltag Notes =

Revision as of 16:08, 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