Skip to content

Commit

Permalink
Replace non-ASCII characters
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-F5 committed Oct 1, 2024
1 parent dd73d1e commit b1b8602
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions apriltag_pose.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ void estimate_pose_for_tag_homography(
* used to find a potential second local minima and Orthogonal Iteration is
* used to refine this second estimate.
*
* [1]: E. Olson, Apriltag: A robust and flexible visual fiducial system, in
* [1]: E. Olson, "Apriltag: A robust and flexible visual fiducial system," in
* 2011 IEEE International Conference on Robotics and Automation,
* May 2011, pp. 34003407.
* May 2011, pp. 3400-3407.
* [2]: Lu, G. D. Hager and E. Mjolsness, "Fast and globally convergent pose
* estimation from video images," in IEEE Transactions on Pattern Analysis
* and Machine Intelligence, vol. 22, no. 6, pp. 610-622, June 2000.
Expand Down Expand Up @@ -77,4 +77,3 @@ double estimate_tag_pose(apriltag_detection_info_t* info, apriltag_pose_t* pose)
#ifdef __cplusplus
}
#endif

2 changes: 1 addition & 1 deletion common/matd.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ double matd_det_general(const matd_t *a)
// The determinant of a can be calculated as
// epsilon*det(L)*det(U),
// where epsilon is just the sign of the corresponding permutation
// (which is +1 for an even number of permutations and is 1
// (which is +1 for an even number of permutations and is -1
// for an uneven number of permutations).
double det = mlu->pivsign * detL * detU;

Expand Down

0 comments on commit b1b8602

Please sign in to comment.