-
Notifications
You must be signed in to change notification settings - Fork 136
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
Program dies when use_pixel is used #78
Comments
Actually, the program dies when does this line:
|
Well it is obvious I think, the market_point_history is being cleared before accessing |
Hi...same issue~ |
Hi I think this is a problem caused by referring to marked_point_history_ in several places.
ROS_INFO("CHECK::update_cell is called x = %d y = %d\n", x, y); void RangeSensorLayer::removeOutdatedReadings() ROS_INFO("CHECK::removeOutdaredReadings\n"); After the marked_point_histor is removed by clear_threshold, it is also referred to by pixel_decay. The simplest way is to use a lock. thanks. |
Please refer to the link below. The smallest changes were applied. "https://stackoverflow.com/questions/4636182/problem-with-stdmapiterator-after-calling-erase" Signed-off-by: Jonghwan Choi <[email protected]>
I think this is where the problem lies:
navigation_layers/range_sensor_layer/src/range_sensor_layer.cpp
Line 403 in 8899b6e
@DLu
The text was updated successfully, but these errors were encountered: