-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
planeWithPlaneIntersection, error in parallel plane test #1695
Comments
Agreed! Something like this should do the trick
Can you file a pull request with the changes? Edit: mistake on the expression to be checked. |
SergioRAgostinho
added a commit
that referenced
this issue
Aug 26, 2016
Fix issue #1695. Test for parallel planes in planePlaneIntersection.
Closed by #1698. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The function
template <typename Scalar> bool pcl::planeWithPlaneIntersection (const Eigen::Matrix<Scalar, 4, 1> &plane_a, const Eigen::Matrix<Scalar, 4, 1> &plane_b, Eigen::Matrix<Scalar, Eigen::Dynamic, 1> &line, double angular_tolerance)
in file intersections.hpp checks for parallel planes like this:I think there a three issues with this code
(test_cos < upper_limit)
\param[in] angular_tolerance tolerance in radians
. In code the parameter is not used in radian domain.Your Environment
Expected Behavior
Checking for anti-parallel planes, correct documentation.
The text was updated successfully, but these errors were encountered: