-
Notifications
You must be signed in to change notification settings - Fork 5
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
Perception lidar #73
base: master
Are you sure you want to change the base?
Perception lidar #73
Conversation
…o into perception_lidar
@@ -30,7 +30,7 @@ build all modules | |||
|
|||
|
|||
```bash | |||
bash apollo.sh build | |||
bash apollo.sh build_gpu |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's better to address if you build without perception, use apollo.sh build
, if not ,use apollo.sh build_gpu
docker/scripts/cyber_start.sh
Outdated
@@ -20,13 +20,18 @@ source "${APOLLO_ROOT_DIR}/scripts/apollo.bashrc" | |||
|
|||
# CACHE_ROOT_DIR="${APOLLO_ROOT_DIR}/.cache" | |||
|
|||
VERSION_X86_64="diamond-auto-x86_64-18.04-20200925_1303" | |||
#VERSION_X86_64="diamond-auto-x86_64-18.04-20200925_1303" | |||
#VERSION_X86_64="dev-x86_64-18.04-20200926_1057" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove comment line.
@@ -0,0 +1,4 @@ | |||
obst_output_channel: "/diamond/perception/Obstacles" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Channel name should be lower case.
@@ -5,9 +5,13 @@ boost::shared_ptr<pcl::visualization::PCLVisualizer> viewer( | |||
|
|||
bool Lidar_pointcloudcluster::Init() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Class name use camel case by code style
@@ -2,9 +2,10 @@ | |||
module_config { | |||
module_library : "/apollo/bazel-bin/modules/perception/lidar_pointcloudcluster/lidar_pointcloudcluster.so" | |||
components { | |||
class_name : "lidar_pointcloudcluster" | |||
class_name : "Lidar_pointcloudcluster" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Class name naming style
No description provided.