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

Vini71's profile - activity

2024-02-02 10:00:13 -0500 received badge  Famous Question (source)
2023-12-11 12:09:15 -0500 received badge  Famous Question (source)
2023-11-03 09:41:27 -0500 received badge  Notable Question (source)
2023-11-03 09:41:27 -0500 received badge  Popular Question (source)
2023-09-13 00:44:03 -0500 received badge  Famous Question (source)
2023-09-05 14:16:28 -0500 received badge  Popular Question (source)
2023-09-05 14:16:28 -0500 received badge  Notable Question (source)
2023-08-17 05:50:43 -0500 received badge  Famous Question (source)
2023-08-10 22:55:05 -0500 received badge  Rapid Responder (source)
2023-08-10 22:55:05 -0500 answered a question Does nav2 use camera for obstacle avoidance?

Yes you can use a depth câmera plugin (for Gazebo simulator) to test it. I have already done this for my simulation actu

2023-08-10 20:59:15 -0500 received badge  Nice Answer (source)
2023-08-10 18:22:41 -0500 answered a question Question about obstacle avoidance

Hi I summary of the idea 1 -Face Recognition: Use the ROS2 package for face recognition. https://www.theconstructsim.c

2023-08-10 18:18:07 -0500 edited answer Issues with Goal Pose Setting using SLAM in Nav2 Stack for GPS-based Navigation

Hi I have summarized an idea: 1-Face Recognition: Use the ROS2 package for face recognition: https://www.theconstructs

2023-08-10 18:15:42 -0500 received badge  Rapid Responder (source)
2023-08-10 18:15:42 -0500 answered a question Issues with Goal Pose Setting using SLAM in Nav2 Stack for GPS-based Navigation

Hi I have summarized an idea: 1-Face Recognition: Use the ROS2 package for face recognition: https://www.theconstructs

2023-08-10 17:10:30 -0500 edited question Issues with Goal Pose Setting using SLAM in Nav2 Stack for GPS-based Navigation

Issues with Goal Pose Setting using SLAM in Nav2 Stack for GPS-based Navigation Hi, I am currently working on a GPS-bas

2023-08-10 17:09:37 -0500 asked a question Issues with Goal Pose Setting using SLAM in Nav2 Stack for GPS-based Navigation

Issues with Goal Pose Setting using SLAM in Nav2 Stack for GPS-based Navigation Hi, I am currently working on a GPS-bas

2023-08-10 02:15:52 -0500 received badge  Famous Question (source)
2023-08-10 02:15:29 -0500 received badge  Famous Question (source)
2023-08-10 02:15:29 -0500 received badge  Notable Question (source)
2023-08-08 16:24:04 -0500 commented answer Navsat_transform_node does not subscribe to IMU topic

Crazy behavior I have spent hours trying to see the /imu topic being subscribed by navsat_transform_node and nave saw it

2023-08-08 16:23:46 -0500 commented answer navsat_transform_node without IMU

Crazy behavior I have spent hours trying to see the /imu topic being subscribed by navsat_transform_node and nave saw it

2023-08-02 04:51:51 -0500 commented answer Depth camera not working in Reiz

Then it seems a robot state publisher or joint state publisher issue. Do you have these packages installed? Is your TF o

2023-08-01 11:27:32 -0500 commented question Costmap creation from 3D mapping

Did you try to fine-tuning the params, such as change the "z_origin" on nav2_params.yaml? Or increase the mapping capabi

2023-08-01 11:17:28 -0500 edited answer Depth camera not working in Reiz

If you are using ROS2 probably is a QoS issue ( Quality of service) You must open rviz2 1- ros2 run rviz2 rviz2 2- Go

2023-08-01 11:13:35 -0500 edited answer Depth camera not working in Reiz

If you are using ROS2 probably is a QoS issue ( Quality of service) You must open rviz2 1- rosrun rviz2 rviz2 2- Go t

2023-08-01 11:12:41 -0500 answered a question Depth camera not working in Reiz

If you are using ROS2 probably is a QoS issue ( Quality of service) You must open rviz2 1- rosrun rviz2 rviz2 2- Go t

2023-08-01 11:12:41 -0500 received badge  Rapid Responder (source)
2023-08-01 11:01:00 -0500 marked best answer depth_image_to_laserscan not publishing to /kinect_scan topic in ROS2 Galactic

Hello,

I am trying to convert a depth image to a laser scan using the depthimage_to_laserscan package in ROS2 Galactic, but I am having trouble getting the node to publish the converted LaserScan data. Despite being able to subscribe to the input depth image topic (/kinect_sensor/depth/image_raw), the node doesn't seem to be publishing the converted data to the /kinect_scan topic. Or the node is not properly doing its task: converting the data...

image description

Here's the launch file snippet for the depthimage_to_laserscan node:

Kinect depthimage to laserscan conversion node

depthimage_to_laserscan_node = Node(
    package='depthimage_to_laserscan',
    executable='depthimage_to_laserscan_node',
    name='depthimage_to_laserscan',
    parameters=[kinect_params_file, {'use_sim_time': use_sim_time}],
    remappings=[('depth', '/kinect_sensor/depth/image_raw'),
                ('scan', '/kinect_scan')],
    output='screen')

And my kinect_params.yaml file:

depthimage_to_laserscan_node:
  ros__parameters:
    output_frame: kinect_depth_frame
    scan_height: 1
    range_min: 0.45
    range_max: 10.0
    scan_topic: /kinect_scan

When I inspect the /depthimage_to_laserscan node using ros2 node info, it shows that the node subscribes to /kinect_sensor/depth/image_raw and publishes to /kinect_scan. However, when I echo the /kinect_scan topic, it is empty and produces no output.

Here is a LINK to a video demonstrating the issue.

I have already tried changing the scan_topic to the original /scan topic in the parameter file and have also checked that the frame_id in the header of the depth image messages is consistent with the output_frame parameter, but these didn't solve the issue.

Could anyone please help me to understand what might be going wrong and how to get the depthimage_to_laserscan node to publish the LaserScan data correctly?

I am facing a similar issue and behavior using other packages image-proc, as related here: https://github.com/ros-perception/ima...

Thank you in advance for your help.

2023-08-01 02:13:43 -0500 received badge  Notable Question (source)
2023-08-01 02:13:43 -0500 received badge  Popular Question (source)
2023-08-01 02:13:43 -0500 received badge  Famous Question (source)
2023-07-31 21:17:57 -0500 edited question Real Kinect Scan Data not Generating Local Costmap in Nav2

Real Kinect Scan Data not Generating Local Costmap in Nav2 I am currently working on a project that involves integrating

2023-07-30 23:31:13 -0500 edited question Real Kinect Scan Data not Generating Local Costmap in Nav2

Real Kinect Scan Data not Generating Local Costmap in Nav2 I am currently working on a project that involves integrating

2023-07-30 23:26:01 -0500 edited question Real Kinect Scan Data not Generating Local Costmap in Nav2

Real Kinect Scan Data not Generating Local Costmap in Nav2 I am currently working on a project that involves integrating

2023-07-30 23:18:36 -0500 edited question Real Kinect Scan Data not Generating Local Costmap in Nav2

Real Kinect Scan Data not Generating Local Costmap in Nav2 I am currently working on a project where I am integrating re

2023-07-30 23:08:38 -0500 asked a question Real Kinect Scan Data not Generating Local Costmap in Nav2

Real Kinect Scan Data not Generating Local Costmap in Nav2 I am currently working on a project where I am integrating re

2023-07-28 00:49:52 -0500 edited answer depth_image_to_laserscan not publishing to /kinect_scan topic in ROS2 Galactic

Solving QoS mismatch and compatibility issues when compiling depthimage_to_laserscan package for ROS2 Galactic The dept

2023-07-28 00:36:11 -0500 answered a question depth_image_to_laserscan not publishing to /kinect_scan topic in ROS2 Galactic

Solving QoS mismatch and compatibility issues when compiling depthimage_to_laserscan package for ROS2 Galactic The dept

2023-07-25 21:09:38 -0500 edited question depth_image_to_laserscan not publishing to /kinect_scan topic in ROS2 Galactic

depth_image_to_laserscan not publishing to /kinect_scan topic in ROS2 Galactic Hello, I am trying to convert a depth im

2023-07-25 18:27:46 -0500 edited question depth_image_to_laserscan not publishing to /kinect_scan topic in ROS2 Galactic

depth_image_to_laserscan not publishing to /kinect_scan topic in ROS2 Galactic Hello, I am trying to convert a depth im

2023-07-25 18:25:46 -0500 asked a question depth_image_to_laserscan not publishing to /kinect_scan topic in ROS2 Galactic

depth_image_to_laserscan not publishing to /kinect_scan topic in ROS2 Galactic Hello, I am trying to convert a depth im

2023-07-25 14:13:57 -0500 commented question kinect azure simulation with Gazebo in ros1/ros2

Hi I also need to simulate a kinect within ROS2. Did you figure out how?

2023-06-25 20:00:53 -0500 commented answer Inverted Initial Localization in Nav2 for Ackermann Vehicle - Front and Rear Ends Misaligned in RViz

Steve, I fixed pose localization errors by aligning my robot's SDF with REP 103. However, the planner could only be trig

2023-06-25 19:59:28 -0500 commented answer Inverted Initial Localization in Nav2 for Ackermann Vehicle - Front and Rear Ends Misaligned in RViz

Steve, I fixed pose localization errors by aligning my robot's SDF with REP 103. However, the planner could only be trig

2023-06-25 19:58:58 -0500 commented answer Inverted Initial Localization in Nav2 for Ackermann Vehicle - Front and Rear Ends Misaligned in RViz

Steve, I fixed pose localization errors by aligning my robot's SDF with REP 103. However, the planner could only be trig

2023-06-25 19:58:14 -0500 commented answer Inverted Initial Localization in Nav2 for Ackermann Vehicle - Front and Rear Ends Misaligned in RViz

Steve, I fixed pose localization errors by aligning my robot's SDF with REP 103. However, the planner could only be trig

2023-06-25 19:55:28 -0500 commented answer Inverted Initial Localization in Nav2 for Ackermann Vehicle - Front and Rear Ends Misaligned in RViz

Steve, I fixed pose localization errors by aligning my robot's SDF with REP 103, but the planner issues persisted in the

2023-06-25 19:53:56 -0500 commented answer Inverted Initial Localization in Nav2 for Ackermann Vehicle - Front and Rear Ends Misaligned in RViz

Steve, I fixed pose localization errors by aligning my robot's SDF with REP 103, but the planner issues persisted in the

2023-06-25 19:51:36 -0500 marked best answer Inverted Initial Localization in Nav2 for Ackermann Vehicle - Front and Rear Ends Misaligned in RViz

While implementing SLAM with Nav2 on my Ackermann-style truck robot, I've run into an issue where the initial localization starts with my vehicle facing in the opposite direction (x orientation reversed). Specifically, the truck's front bumper and rear end are inverted in the RViz visualization, leading to mislocalization when the vehicle starts moving.

This issue is demonstrated in this video: lnverted Localization Rviz, I highlight the misalignment by adding an obstacle in Gazebo. The obstacle in front of the truck incorrectly appears at the rear end in RViz due to this localization error.

I am unsure how to address this problem. Could the solution involve inverting a specific TF in the Xacro file related to the IMU origin, or should I consider another possible solution?

Any assistance in resolving this inverted localization issue would be greatly appreciated.