Package com.titaniumtigers4829.data.pose
Record Class PoseEstimate
java.lang.Object
java.lang.Record
com.titaniumtigers4829.data.pose.PoseEstimate
public record PoseEstimate(edu.wpi.first.math.geometry.Pose2d pose, double timestampSeconds, double latency, int tagCount, double tagSpan, double avgTagDist, double avgTagArea, RawFiducial[] rawFiducials, boolean isMegaTag2, Botpose botpose)
extends Record
Represents a Limelight pose estimate from Limelight's NetworkTables output. This is for any
botpose estimate, so MegaTag1 or MegaTag2
-
Constructor Summary
ConstructorsConstructorDescriptionInitializes an "empty" PoseEstimate record with default valuesPoseEstimate
(edu.wpi.first.math.geometry.Pose2d pose, double timestampSeconds, double latency, int tagCount, double tagSpan, double avgTagDist, double avgTagArea, RawFiducial[] rawFiducials, boolean isMegaTag2, Botpose botpose) Creates an instance of aPoseEstimate
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
Returns the value of theavgTagArea
record component.double
Returns the value of theavgTagDist
record component.botpose()
Returns the value of thebotpose
record component.boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
Returns the value of theisMegaTag2
record component.boolean
Checks if the PoseEstimate is valid.double
latency()
Returns the value of thelatency
record component.edu.wpi.first.math.geometry.Pose2d
pose()
Returns the value of thepose
record component.Returns the value of therawFiducials
record component.int
tagCount()
Returns the value of thetagCount
record component.double
tagSpan()
Returns the value of thetagSpan
record component.double
Returns the value of thetimestampSeconds
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
PoseEstimate
public PoseEstimate()Initializes an "empty" PoseEstimate record with default values -
PoseEstimate
public PoseEstimate(edu.wpi.first.math.geometry.Pose2d pose, double timestampSeconds, double latency, int tagCount, double tagSpan, double avgTagDist, double avgTagArea, RawFiducial[] rawFiducials, boolean isMegaTag2, Botpose botpose) Creates an instance of aPoseEstimate
record class.- Parameters:
pose
- the value for thepose
record componenttimestampSeconds
- the value for thetimestampSeconds
record componentlatency
- the value for thelatency
record componenttagCount
- the value for thetagCount
record componenttagSpan
- the value for thetagSpan
record componentavgTagDist
- the value for theavgTagDist
record componentavgTagArea
- the value for theavgTagArea
record componentrawFiducials
- the value for therawFiducials
record componentisMegaTag2
- the value for theisMegaTag2
record componentbotpose
- the value for thebotpose
record component
-
-
Method Details
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
isValidPoseEstimate
public boolean isValidPoseEstimate()Checks if the PoseEstimate is valid. If this is true, it means the PoseEstimate has valid data from at least one april tag.- Returns:
- True if the PoseEstimate is valid, false otherwise
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
pose
public edu.wpi.first.math.geometry.Pose2d pose()Returns the value of thepose
record component.- Returns:
- the value of the
pose
record component
-
timestampSeconds
public double timestampSeconds()Returns the value of thetimestampSeconds
record component.- Returns:
- the value of the
timestampSeconds
record component
-
latency
public double latency()Returns the value of thelatency
record component.- Returns:
- the value of the
latency
record component
-
tagCount
public int tagCount()Returns the value of thetagCount
record component.- Returns:
- the value of the
tagCount
record component
-
tagSpan
public double tagSpan()Returns the value of thetagSpan
record component.- Returns:
- the value of the
tagSpan
record component
-
avgTagDist
public double avgTagDist()Returns the value of theavgTagDist
record component.- Returns:
- the value of the
avgTagDist
record component
-
avgTagArea
public double avgTagArea()Returns the value of theavgTagArea
record component.- Returns:
- the value of the
avgTagArea
record component
-
rawFiducials
Returns the value of therawFiducials
record component.- Returns:
- the value of the
rawFiducials
record component
-
isMegaTag2
public boolean isMegaTag2()Returns the value of theisMegaTag2
record component.- Returns:
- the value of the
isMegaTag2
record component
-
botpose
Returns the value of thebotpose
record component.- Returns:
- the value of the
botpose
record component
-