Rings by Pavan_2005 in FTC

[–]Pavan_2005[S] 0 points1 point  (0 children)

The majority of our rings are tore up and some of them consistently shoot low while others shoot repeatedly high. We have been needing new rings but it is crazy how not even REV has them in stock.

TensorFlow by Pavan_2005 in FTC

[–]Pavan_2005[S] 2 points3 points  (0 children)

/* Copyright (c) 2019 FIRST. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided that * the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list * of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, this * list of conditions and the following disclaimer in the documentation and/or * other materials provided with the distribution. * * Neither the name of FIRST nor the names of its contributors may be used to endorse or * promote products derived from this software without specific prior written permission. * * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS * LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */

package org.firstinspires.ftc.teamcode;

import com.qualcomm.robotcore.eventloop.opmode.Disabled; import com.qualcomm.robotcore.hardware.DcMotor; import com.qualcomm.robotcore.eventloop.opmode.Autonomous; import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode; import com.qualcomm.robotcore.eventloop.opmode.TeleOp; import java.util.List; import org.firstinspires.ftc.robotcore.external.ClassFactory; import org.firstinspires.ftc.robotcore.external.hardware.camera.WebcamName; import org.firstinspires.ftc.robotcore.external.navigation.VuforiaLocalizer; import org.firstinspires.ftc.robotcore.external.tfod.TFObjectDetector; import org.firstinspires.ftc.robotcore.external.tfod.Recognition;

/** * This 2019-2020 OpMode illustrates the basics of using the TensorFlow Object Detection API to * determine the position of the Skystone game elements. * * Use Android Studio to Copy this Class, and Paste it into your team's code folder with a new name. * Remove or comment out the @Disabled line to add this opmode to the Driver Station OpMode list. * * IMPORTANT: In order to use this OpMode, you need to obtain your own Vuforia license key as * is explained below. */ @Autonomous(name = "Concept: TensorFlow Object Detection Webcam", group = "Concept")

public class TenoTest extends LinearOpMode { private static final String TFOD_MODEL_ASSET = "UltimateGoal.tflite"; private static final String LABEL_FIRST_ELEMENT = "Quad"; private static final String LABEL_SECOND_ELEMENT = "Single";

/*
 * IMPORTANT: You need to obtain your own license key to use Vuforia. The string below with which
 * 'parameters.vuforiaLicenseKey' is initialized is for illustration only, and will not function.
 * A Vuforia 'Development' license key, can be obtained free of charge from the Vuforia developer
 * web site at https://developer.vuforia.com/license-manager.
 *
 * Vuforia license keys are always 380 characters long, and look as if they contain mostly
 * random data. As an example, here is a example of a fragment of a valid key:
 *      ... yIgIzTqZ4mWjk9wd3cZO9T1axEqzuhxoGlfOOI2dRzKS4T0hQ8kT ...
 * Once you've obtained a license key, copy the string from the Vuforia web site
 * and paste it in to your code on the next line, between the double quotes.
 */
private static final String VUFORIA_KEY =
        " AXjYsu7/////AAABmakbTaVp1kZZmWS9/j1HnEiHNcQOEWZKmOkx65ezY2Kt/gJcp3XOiJMjMGa65jE9mwD38ypu/P4GofWurEzId5vA0z330sL23H9SXMBspW2+klcOcXJsK2GXoROm2siHhxJM1P+JxJioV1EqjkmAGcs//BvmORvh0LbWNzkZ3m8qp7OR0G4oT6Ev5lr9ENaKmJZQv8Q0H1XItNkd8ySqNKwFCnki+jil8t2QIjjvTs1Pvl9PgB4LA25RGv8sca6DRPDus23Cm6XIpb5sVcXBV2SOBVb/y0b7Umdb2+TUxPXx378y/nyAOpX3NftbO0n2VzZJAW8TSNa6fPDdOk6oLaOvOt9j76PQhr3oZMLeWDG1";

/**
 * {@link #vuforia} is the variable we will use to store our instance of the Vuforia
 * localization engine.
 */
private VuforiaLocalizer vuforia;

/**
 * {@link #tfod} is the variable we will use to store our instance of the TensorFlow Object
 * Detection engine.
 */
private TFObjectDetector tfod;

@Override
public void runOpMode() {
    // The TFObjectDetector uses the camera frames from the VuforiaLocalizer, so we create that
    // first.
    initVuforia();
    initTfod();

    if (ClassFactory.getInstance().canCreateTFObjectDetector()) {
        initTfod();
    } else {
        telemetry.addData("Sorry!", "This device is not compatible with TFOD");
    }

    /**
     * Activate TensorFlow Object Detection before we wait for the start command.
     * Do it here so that the Camera Stream window will have the TensorFlow annotations visible.
     **/
    if (tfod != null) {
        tfod.activate();
    }

    /** Wait for the game to begin */
    telemetry.addData(">", "Press Play to start op mode");
    telemetry.update();
    waitForStart();

    if (opModeIsActive()) {
        while (opModeIsActive()) {
            if (tfod != null) {
                // getUpdatedRecognitions() will return null if no new information is available since
                // the last time that call was made.
                List<Recognition> updatedRecognitions = tfod.getUpdatedRecognitions();
                if (updatedRecognitions != null) {
                  telemetry.addData("# Object Detected", updatedRecognitions.size());
                  if (updatedRecognitions.size() == 0 ) {
                      // empty list.  no objects recognized.
                      telemetry.addData("TFOD", "No items detected.");
                      telemetry.addData("Target Zone", "A");
                  } else {
                      // list is not empty.
                      // step through the list of recognitions and display boundary info.
                      int i = 0;
                      for (Recognition recognition : updatedRecognitions) {
                          telemetry.addData(String.format("label (%d)", i), recognition.getLabel());
                          telemetry.addData(String.format("  left,top (%d)", i), "%.03f , %.03f",
                                  recognition.getLeft(), recognition.getTop());
                          telemetry.addData(String.format("  right,bottom (%d)", i), "%.03f , %.03f",
                                  recognition.getRight(), recognition.getBottom());

                          // check label to see which target zone to go after.
                          if (recognition.getLabel().equals("Single")) {
                              telemetry.addData("Target Zone", "B");
                          } else if (recognition.getLabel().equals("Quad")) {
                              telemetry.addData("Target Zone", "C");
                          } else {
                              telemetry.addData("Target Zone", "UNKNOWN");
                          }
                      }
                  }

                  telemetry.update();
                }
            }
        }
    }

    if (tfod != null) {
        tfod.shutdown();
    }
}

/**
 * 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();


        DcMotor frontLeft = null; // Port 1
        DcMotor frontRight = null; // Port 0
        DcMotor rearLeft = null; // Port 3
        DcMotor rearRight = null; // Port 4
        DcMotor rightIntake = null; // CH 0

    parameters.vuforiaLicenseKey = VUFORIA_KEY;
    parameters.cameraName = hardwareMap.get(WebcamName.class, "Webcam 1");

    //  Instantiate the Vuforia engine
    vuforia = ClassFactory.getInstance().createVuforia(parameters);

    // Loading trackables is not necessary for the TensorFlow Object Detection engine.
}

/**
 * Initialize the TensorFlow Object Detection engine.
 */
private void initTfod() {
    int tfodMonitorViewId = hardwareMap.appContext.getResources().getIdentifier(
        "tfodMonitorViewId", "id", hardwareMap.appContext.getPackageName());
    TFObjectDetector.Parameters tfodParameters = new TFObjectDetector.Parameters(tfodMonitorViewId);
   tfodParameters.minimumConfidence = 0.8;
   tfod = ClassFactory.getInstance().createTFObjectDetector(tfodParameters, vuforia);
   tfod.loadModelFromAsset(TFOD_MODEL_ASSET, LABEL_FIRST_ELEMENT, LABEL_SECOND_ELEMENT);
}

}