Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 9de6219

Browse files
authored
update robot pose estimator docs (#253)
1 parent 321fba6 commit 9de6219

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/docs/programming/photonlib/robot-pose-estimator.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ AprilTags and RobotPoseEstimator
33

44
.. note:: For more information on how to methods to get AprilTag data, look :ref:`here <docs/programming/photonlib/getting-target-data:Getting AprilTag Data From A Target>`.
55

6-
PhotonLib includes a ``RobotPoseEstimator`` class, which allows you to combine the pose data from all tags in view in order to get one final pose using different strategies.
6+
PhotonLib includes a ``RobotPoseEstimator`` class, which allows you to combine the pose data from all tags in view in order to get a field relative pose.
77

88
Creating an ``AprilTagFieldLayout``
99
-----------------------------------
@@ -34,15 +34,15 @@ Creating a ``RobotPoseEstimator``
3434
The RobotPoseEstimator has a constructor that takes an ``AprilTagFieldLayout`` (see above), ``PoseStrategy``, and ``ArrayList<Pair<PhotonCamera, Transform3d>>``. ``PoseStrategy`` has five possible values:
3535

3636
* LOWEST_AMBIGUITY
37-
* Choose the Pose with the lowest ambiguity
37+
* Choose the Pose with the lowest ambiguity.
3838
* CLOSEST_TO_CAMERA_HEIGHT
39-
* Choose the Pose which is closest to the camera height
39+
* Choose the Pose which is closest to the camera height.
4040
* CLOSEST_TO_REFERENCE_POSE
41-
* Choose the Pose which is closest to the camera height
41+
* Choose the Pose which is closest to the pose from setReferencePose().
4242
* CLOSEST_TO_LAST_POSE
43-
* Choose the Pose which is closest to the last pose calculated
43+
* Choose the Pose which is closest to the last pose calculated.
4444
* AVERAGE_BEST_TARGETS
45-
* Choose the Pose which is the average of all the poses from each tag
45+
* Choose the Pose which is the average of all the poses from each tag.
4646

4747
.. tab-set-code::
4848
.. code-block:: java

0 commit comments

Comments
 (0)