-
Notifications
You must be signed in to change notification settings - Fork 70
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
[detect_grasps-1] process has died [pid 26762, exit code -11, #12
Comments
Same here Console:
|
I think I solved it after following a comment here |
@seann999 |
@seann999 the issue you point is related to PCL, however the output of gdb seems like error is triggered by Eigen;
|
This issue happened to me because the network paths were not correctly found I used Eigen classifier, which uses some parameters under |
The same question has show when I run $ roslaunch gpd tutorial1.launch process[detect_grasps-1]: started with pid [9269] |
I was just wrapping a unique pointer around the cloud_camera object in the |
[detect_grasps-1] process has died # Path to config file for robot hand geometry
hand_geometry_filename = /home/zhao/git_ws/gpd/cfg/hand_geometry.cfg
# Path to config file for volume and image geometry
image_geometry_filename = /home/zhao/git_ws/gpd/cfg/image_geometry_15channels.cfg
# Path to directory that contains neural network parameters
weights_file = /home/zhao/git_ws/gpd/models/lenet/15channels/params/ Maybe "double free or corruption (out)" error will occur, which can be solved as follows // grasp_detection_node.cpp
void GraspDetectionNode::cloud_callback(const sensor_msgs::PointCloud2& msg)
{
if (!has_cloud_)
{
if(cloud_camera_)
delete cloud_camera_;
cloud_camera_ = NULL;
// ... |
I'm experincing memory leak with adding the if (!cloud_camera_) for the 'double free or corruption (out)' error. Please be careful if anyone is doing that. Removing the '-march=native -msse4.2 -mavx2 -mfma -flto' flags in gpd CMakeLists and rebuilding gpd + gpd_ros somehow solves the issue for me. Appreciate if anyone has more insight on this issue and why this helps (or hides the problem if it is?) |
For memory leak, updating |
确实是这个问题 |
Hi! Does anyone have a similar problem in Ubuntu 20.04?
It seems that after Directly using
How to solve this problem? I really need your help...... |
@zhanghua7099 Could you put the point cloud that you tried with |
@atenpas Hi! Thanks for your reply. I have fixed this problem. In my computer (Ubuntu 20.04), this is caused by the different compile setting of In However, in Line 28 in 9ae5241
I installed It seems that I set the compile options for the two libraries to be the same, and the results are good. |
Hello,
I am trying to use this lib with my simulated point cloud under gazebo,but I am getting error in title. I see the log but there is no any meaningful output for further debug. Here is what happens when Launch the node;
is there any suggestions ?
Thank you for your time
The text was updated successfully, but these errors were encountered: