Skip to content

Commit

Permalink
Merge pull request #356 from Chris-F5/remove-crlf
Browse files Browse the repository at this point in the history
Remove CRLF line ends
  • Loading branch information
christian-rauch authored Oct 1, 2024
2 parents e285f15 + f444e36 commit 8bd4f76
Show file tree
Hide file tree
Showing 4 changed files with 341 additions and 342 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
Loading

0 comments on commit 8bd4f76

Please sign in to comment.