Created Autonomous folders

This commit is contained in:
SpencerPiha
2022-10-20 18:49:33 -05:00
parent a28e692075
commit 4e07167951
3 changed files with 35 additions and 5 deletions

View File

@@ -60,13 +60,15 @@ public class ConceptTensorFlowObjectDetectionWebcam extends LinearOpMode {
* has been downloaded to the Robot Controller's SD FLASH memory, it must to be loaded using loadModelFromFile()
* Here we assume it's an Asset. Also see method initTfod() below .
*/
// private static final String TFOD_MODEL_ASSET = "PowerPlay.tflite";
private static final String TFOD_MODEL_ASSET = "22-23-Custom-Images-V2.tflite";
private static final String TFOD_MODEL_ASSET = "PowerPlay.tflite";
// private static final String TFOD_MODEL_ASSET = "22-23-Custom-Images-V2.tflite";
private static final String[] LABELS = {
"Wrench 1",
"Screw 2",
"Screw Driver 3"
"1 Bolt",
"2 Bulb",
"3 Panel"
};
/*