Difference between revisions of "FTC 2024 Season"

From wikidb
Jump to: navigation, search
(TensorFlow Video Training)
(Apriltag Notes)
Line 55: Line 55:
  
 
* [[Just a Start ]]
 
* [[Just a Start ]]
 +
 +
= Control Hub specs =
 +
 +
Notice the Multi-Media Processor at the bottom middle of the block diagram below:
 +
 +
* Graphic Engine
 +
* JPEG Decoder
 +
* IEP
 +
* 1080P Video encoder
 +
* 4K Video decoder
 +
 +
* [https://docs.revrobotics.com/duo-control/control-system-overview/control-hub-basics] Control Hub Basics]
 +
 +
General Specifications
 +
 +
* Processor 
 +
** RK3328 Quad-core ARM® Cortex-A53
 +
** Texas Instruments ARM® Cortex®-M4
 +
* Memory 1GB LPDDR3
 +
* Storage 8GB eMMC 4.51
 +
* Wireless
 +
** 802.11 ac/b/g/n/w Wi-Fi; Dual Band 2.4 & 5 GHz
 +
** Bluetooth 4.1
 +
* Graphics‡
 +
** GPU - ARM® Mali 450MP4
 +
** HDMI 2.0 support for 4k @ 60Hz
 +
 +
* [https://opensource.rock-chips.com/wiki_RK3328 WIKI RK3328
  
 
= References =
 
= References =

Revision as of 23:51, 20 December 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

Control Hub specs

Notice the Multi-Media Processor at the bottom middle of the block diagram below:

  • Graphic Engine
  • JPEG Decoder
  • IEP
  • 1080P Video encoder
  • 4K Video decoder
  • [1] Control Hub Basics]

General Specifications

  • Processor
    • RK3328 Quad-core ARM® Cortex-A53
    • Texas Instruments ARM® Cortex®-M4
  • Memory 1GB LPDDR3
  • Storage 8GB eMMC 4.51
  • Wireless
    • 802.11 ac/b/g/n/w Wi-Fi; Dual Band 2.4 & 5 GHz
    • Bluetooth 4.1
  • Graphics‡
    • GPU - ARM® Mali 450MP4
    • HDMI 2.0 support for 4k @ 60Hz

References

Maintenance

Github fix references