Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove CRLF line ends #356

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading
Loading