ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Lucas Marins's profile - activity

2023-05-05 15:00:21 -0500 commented answer PointCloud2 parse to xyz array in ROS2

Worked here. Thank you a lot.

2023-05-05 14:59:59 -0500 commented answer PointCloud2 parse to xyz array in ROS2

It worked here. Thank you a lot.

2021-06-26 07:03:13 -0500 received badge  Good Answer (source)
2020-07-11 13:57:07 -0500 received badge  Nice Answer (source)
2020-07-11 13:51:44 -0500 received badge  Necromancer (source)
2020-07-11 13:40:07 -0500 answered a question Creating a costmap from an existing point cloud

Hi. If you are publishing a point cloud topic, you can use the costmap_2d package. There you can understand more how t

2020-07-10 17:12:23 -0500 received badge  Famous Question (source)
2019-11-11 14:00:40 -0500 commented answer initial_state in robot_localization does not change the odometry/filtered initial pose

I am setting both sensors as relative. Do I always need an absolute sensor to work with "initial_state" parameter?

2019-11-11 13:20:11 -0500 commented answer initial_state in robot_localization does not change the odometry/filtered initial pose

I am setting both sensors as relative. Do I always need an absolute sensor?

2019-11-11 06:39:24 -0500 marked best answer initial_state in robot_localization does not change the odometry/filtered initial pose

Hello,

I am working with the robot_localization, filtering two odometry data.

Both of them start at (0,0,0), but I would like to start at (x,y,0).

I am using the initial_state parameter, but the topic keeps publishing the starting pose in (0,0,0).

Which are the possible problems?

I am setting the parameter on my yaml file only:

frequency: 30

sensor_timeout: 0.1
two_d_mode: true  
transform_time_offset: 0.0
transform_timeout: 0.0
print_diagnostics: true
debug: true
debug_out_file: $(env HOME)/.ros/log/ekf.log

publish_tf: true
smooth_lagged_data: false 

dynamic_process_noise_covariance: true
publish_acceleration: false

map_frame: map              # Defaults to "map" if unspecified
odom_frame: odom            # Defaults to "odom" if unspecified
base_link_frame: base_link  # Defaults to "base_link" if unspecified
world_frame: odom           # Defaults to the value of odom_frame if unspecified


odom0: robot/odom0
odom0_config: [true,  true,  false,
               false, false, false,
               true, true, false,
               false, false, false,
               false, false, false]
odom0_queue_size: 2
odom0_nodelay: false
odom0_differential: false
odom0_relative: true
odom0_pose_rejection_threshold: 5
odom0_twist_rejection_threshold: 1.0


odom1: robot/odom1
odom1_config: [true, true, false,
               true, true, true,
               true, true, false,
               true, true, true,
               false, false, false]
odom1_differential: false
odom1_relative: true
odom1_queue_size: 2
odom1_pose_rejection_threshold: 2
odom1_twist_rejection_threshold: 1.0
odom1_nodelay: false

use_control: true
stamped_control: false
control_timeout: 0.2

control_config: [true, true, false, false, false, true]

acceleration_limits: [1.3, 1.3, 0.0, 0.0, 0.0, 3.4]
deceleration_limits: [1.3, 1.3, 0.0, 0.0, 0.0, 4.5]
acceleration_gains: [0.8, 0.8, 0.0, 0.0, 0.0, 0.9]
deceleration_gains: [1.0, 1.0, 0.0, 0.0, 0.0, 1.0]

initial_state: [20.0, 20.0, 0.0,
                0.0, 0.0, 0.0,
                0.0, 0.0, 0.0,
                0.0, 0.0, 0.0,
                0.0, 0.0, 0.0]
2019-11-11 06:39:24 -0500 received badge  Scholar (source)
2019-11-11 06:33:57 -0500 received badge  Notable Question (source)
2019-11-04 03:58:09 -0500 received badge  Popular Question (source)
2019-09-09 07:30:49 -0500 answered a question Object Detection Using Laser

I am not sure if it is something you were looking for, but I have found out two packages on GitHub that uses LaserScan t

2019-09-04 14:34:35 -0500 received badge  Famous Question (source)
2019-09-04 14:33:07 -0500 received badge  Famous Question (source)
2019-09-04 14:33:07 -0500 received badge  Notable Question (source)
2019-09-04 14:26:48 -0500 edited question initial_state in robot_localization does not change the odometry/filtered initial pose

initial_state in robot_localization does not change the odometry/filtered initial pose Hello, I am working with the rob

2019-09-04 14:26:04 -0500 asked a question initial_state in robot_localization does not change the odometry/filtered initial pose

initial_state in robot_localization does not change the odometry/filtered initial pose Hello, I am working with the rob

2019-06-06 08:49:40 -0500 answered a question How can i use a pre loaded map in navigation stack?

You may use the map_server node at your launch file. Do not forget to upload the.yaml file. Something like this. &

2019-06-06 08:49:40 -0500 received badge  Rapid Responder (source)
2019-05-08 08:15:34 -0500 commented question Replace transform between odom and base

That is a good option. tf_remap can handle it temporally.

2019-05-08 07:15:24 -0500 commented question Replace transform between odom and base

That is a good option. tf_remap can handle with it temporally.

2019-05-08 03:39:21 -0500 marked best answer Failed to open and upload big image file, map_file and map_server

I am using Kinetic and Ubuntu 16.04.6 LTS, I am trying to upload a map file for map_server and use it for navigation and amcl localization, but it is really big, 25500 x 5300 pixels (.pgm). The map_server is not starting and shows this message:

[ERROR] [1556905481.419883442]: failed to open image file "/home/dev/src/robot/navigation/maps/bigger_map.pgm": Out of memory

Is possible to use a map with a big number of pixels or I need to reduce the number of pixels to work well? Is it depends on computer memory RAM?

I have tried to use in .png file format, but the message was the same.

2019-05-08 03:39:17 -0500 received badge  Notable Question (source)
2019-05-07 14:25:32 -0500 answered a question Accessing list of ROS topics from inside nodes

A similar question was already answered here. https://answers.ros.org/question/206893/getting-list-of-published-topics

2019-05-07 13:32:40 -0500 commented answer gmapping with "Waiting for the map"

You may use Rviz to check your map topic that is created.

2019-05-07 13:22:50 -0500 commented answer gmapping with "Waiting for the map"

You may wait a little bit because the robot needs to create the map, while moves around the space. Try to run the map_sa

2019-05-07 13:11:30 -0500 commented question the teb planner give unreasonable constantly changing path

Did you check if you are running two planner algorithms? Which commands are you setting?

2019-05-07 13:03:59 -0500 commented answer gmapping with "Waiting for the map"

Good. Different names for the map topic could be a problem, as well. I have already this problem because I was using a d

2019-05-07 12:49:34 -0500 answered a question gmapping with "Waiting for the map"

Is there a 'map' topic in your bag file? I could not download and check it. However, if it exists, probably has a differ

2019-05-07 12:28:17 -0500 commented question Odometry data delay

Which robot are you using physically? It may be caused by a communication delay between your odometry sensor and the co

2019-05-07 12:20:14 -0500 commented question Odometry data delay

What is the robot are you using physically? It may be caused by a communication delay between your odometry sensor and

2019-05-07 12:04:55 -0500 commented question Failed to open and upload big image file, map_file and map_server

I have found out that the map_server uses SDL_image to read image files and dimensions are limited to 8192 x 8192 == 671

2019-05-06 13:07:06 -0500 edited question Failed to open and upload big image file, map_file and map_server

Failed to upload big image file, map_file and map_server I am using Kinetic and Ubuntu 16.04.6 LTS, I am trying to uploa

2019-05-06 13:06:49 -0500 edited question Failed to open and upload big image file, map_file and map_server

Failed to open big image file, map_file and map_server I am using Kinetic and Ubuntu 16.04.6 LTS, I am trying to upload

2019-05-06 13:06:35 -0500 received badge  Popular Question (source)
2019-05-03 15:23:29 -0500 edited question Failed to open and upload big image file, map_file and map_server

Failed to open big image file, map_file and map_server I am using Kinetic and Ubuntu 16.04.6 LTS, I am trying to upload

2019-05-03 15:18:32 -0500 edited question Failed to open and upload big image file, map_file and map_server

Failed to open big image file, map_file and map_server I am trying to upload a map file for map_server and use it for na

2019-05-03 13:10:30 -0500 asked a question Failed to open and upload big image file, map_file and map_server

Failed to open big image file, map_file and map_server I am trying to open a map file and use it for navigation and amcl

2019-04-11 11:04:20 -0500 commented answer What are x and y in map_msgs/OccupancyGridUpdate?

@davelkan Whats is the corner? What does it mean?

2019-01-10 05:45:52 -0500 received badge  Enthusiast
2018-12-07 03:12:21 -0500 received badge  Teacher (source)
2018-12-06 13:27:34 -0500 received badge  Popular Question (source)
2018-12-06 12:26:10 -0500 edited question Using Forward Looking and Mechanically Scanned Imaging Sonar for mapping and localization underwater ?

Using Forward Looking and Mechanically Scanned Imaging Sonar for mapping and localization underwater Hello everyone, I

2018-12-06 10:09:09 -0500 edited question Using Forward Looking and Mechanically Scanned Imaging Sonar for mapping and localization underwater ?

Using Forward Looking and Mechanically Scanned Imaging Sonar for mapping and localization underwater Hello everyone, I

2018-12-06 10:08:37 -0500 edited question Using Forward Looking and Mechanically Scanned Imaging Sonar for mapping and localization underwater ?

Using Forward Looking Sonar for mapping and localization underwater Hello everyone, I would like to use a Foward Lookin

2018-12-06 09:45:08 -0500 edited answer How to use robot_localization of ROS for fusing IMU & GPS implementaion in my framework

You can use the robot_localization package to fuse all data using Kalman Filters. You just need to configure which type

2018-12-06 09:43:37 -0500 edited answer How to use robot_localization of ROS for fusing IMU & GPS implementaion in my framework

You can use the robot_localization package to fuse all data using Kalman Filters. You just need to configure which type

2018-12-06 09:34:02 -0500 edited answer How to use robot_localization of ROS for fusing IMU & GPS implementaion in my framework

You can use the robot_localization package to fuse all data using Kalman Filters. You just need to configure which type