Class NeuralClassifier

java.lang.Object
limelight.networktables.target.pipeline.NeuralClassifier

public class NeuralClassifier extends Object
Represents a Neural Classifier Pipeline Result extracted from JSON Output
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    double
    Neural pipeline class id from the Limelight.
    Neural pipeline class name from Limelight.
    double
    Confidence that the object is the class.
    double
    X position of the object in the image as percent.
    double
    X position of the object in the image as pixel.
    double
    Y position of the object in the image as percent.
    double
    Y position of the object in the image as pixel
    double
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new NeuralClassifier object.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • className

      public String className
      Neural pipeline class name from Limelight.
    • classID

      public double classID
      Neural pipeline class id from the Limelight.
    • confidence

      public double confidence
      Confidence that the object is the class.
    • zone

      public double zone
    • tx

      public double tx
      X position of the object in the image as percent.
    • tx_pixels

      public double tx_pixels
      X position of the object in the image as pixel.
    • ty

      public double ty
      Y position of the object in the image as percent.
    • ty_pixels

      public double ty_pixels
      Y position of the object in the image as pixel
  • Constructor Details

    • NeuralClassifier

      public NeuralClassifier()
      Creates a new NeuralClassifier object.