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

Bug fix in SurfaceNormalOutlierFilter #457

Merged
merged 6 commits into from
Aug 3, 2021
Merged

Bug fix in SurfaceNormalOutlierFilter #457

merged 6 commits into from
Aug 3, 2021

Commits on Mar 25, 2021

  1. Bug fix: this call to anyabs should not be here

    Example: if `maxAngle = 0.2`, an angle of 3.1 radians should obviously be reject. But with the current code, `eps = cos (0.2)` ~= 0.98, and `abs(cos(3.1)` ~= 0.999, so it is accepted. With this fix, `cos(3.1` ~= -0.999, it is rejected.
    cjamin committed Mar 25, 2021
    Configuration menu
    Copy the full SHA
    0899b97 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2021

  1. Configuration menu
    Copy the full SHA
    e1fc28c View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2021

  1. Configuration menu
    Copy the full SHA
    ed85a13 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2021

  1. Configuration menu
    Copy the full SHA
    5859e77 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2021

  1. Configuration menu
    Copy the full SHA
    843adfc View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2021

  1. update result from tests

    pomerlef committed Aug 3, 2021
    Configuration menu
    Copy the full SHA
    af1da4e View commit details
    Browse the repository at this point in the history