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

MovingObjectDetectionCloud::groundPlaneRemoval #4

Open
nyxrobotics opened this issue Jan 19, 2023 · 1 comment
Open

MovingObjectDetectionCloud::groundPlaneRemoval #4

nyxrobotics opened this issue Jan 19, 2023 · 1 comment

Comments

@nyxrobotics
Copy link

nyxrobotics commented Jan 19, 2023

MovingObjectDetectionCloud::groundPlaneRemovalについて
下記2種類が実装されており、後者はコメントアウトされているので書き換えないといけませんでした。

  • void MovingObjectDetectionCloud::groundPlaneRemoval(float x,float y,float z) : 高さの定数値で地面を削除する方法

    void MovingObjectDetectionCloud::groundPlaneRemoval(float x,float y,float z)
    {
    /*Hard coded ground plane removal*/

  • void MovingObjectDetectionCloud::groundPlaneRemoval(float x,float y) : voxel covarianceを使用して地面を削除する方法

    void MovingObjectDetectionCloud::groundPlaneRemoval(float x,float y)
    {
    /*Voxel covariance based ground plane removal.*/

  • 変更が必要な箇所

    cb->groundPlaneRemoval(trim_x,trim_y,trim_z); //ground plane removal (hard coded)
    //cb->groundPlaneRemoval(trim_x,trim_y); //groud plane removal (voxel covariance)

Originally posted by @nyxrobotics in #1 (comment)

@nyxrobotics
Copy link
Author

void MovingObjectDetectionCloud::groundPlaneRemoval(float x,float y) : voxel covarianceを使用して地面を削除する方法

が動作しないのでバグを修正する

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant