PhotonVision

public class PhotonVision extends SubsystemBase

The PhotonVision class is a subsystem that interfaces with multiple PhotonVision cameras to provide vision tracking and pose estimation capabilities. This subsystem is a Singleton that manages multiple CameraModules and selects the best result based on pose ambiguity.

This subsystem provides methods to get the estimated global pose of the robot, the distance to targets, and the yaw of detected AprilTags. It also provides methods to check if a tag is visible and get the pivot position based on distance calculations.

Properties

Link copied to clipboard
public double dist
Link copied to clipboard
public double y
Link copied to clipboard
public double yaw

Functions

Link copied to clipboard
public double fetchDist(PhotonCamera camera)
Link copied to clipboard
public double fetchY(PhotonCamera camera)
Link copied to clipboard
public double fetchYaw(PhotonCamera camera)
Link copied to clipboard
public double getDist()
Gets the current distance to the target.
Link copied to clipboard
public static PhotonVision getInstance()
Returns the Singleton instance of this PhotonVision subsystem.
Link copied to clipboard
public List<Pair<PhotonModule, PhotonPipelineResult>> getResultPairs()
Link copied to clipboard
public double getY()
Gets the current Y position of the target.
Link copied to clipboard
public double getYaw()
Gets the current yaw angle to the target.
Link copied to clipboard
public boolean hasTag()
Checks if there is a visible tag.
Link copied to clipboard
public void logStdDev()
Logs the standard deviation norm for each camera.
Link copied to clipboard
public void periodic()
This method is called periodically by the CommandScheduler.
Link copied to clipboard
public PhotonCamera requestCamera(String cameraName)