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

mogumbo's profile - activity

2022-07-12 03:15:58 -0500 received badge  Self-Learner (source)
2022-04-02 14:54:50 -0500 received badge  Good Question (source)
2022-01-29 02:38:11 -0500 received badge  Notable Question (source)
2022-01-03 22:47:09 -0500 received badge  Famous Question (source)
2021-07-17 12:26:57 -0500 received badge  Nice Answer (source)
2021-07-17 12:26:48 -0500 received badge  Nice Question (source)
2021-05-31 04:52:30 -0500 received badge  Nice Question (source)
2021-04-22 13:30:32 -0500 received badge  Notable Question (source)
2021-04-22 13:30:32 -0500 received badge  Famous Question (source)
2020-12-18 12:50:12 -0500 marked best answer Building OpenCV from source for ROS

I'm in need of a newer version or OpenCV than is provided by my Ubuntu repo. Is there a version or fork of OpenCV that contains a package.xml so it can be compiled as part of a ROS workspace? Seems like that would be more convenient than compiling a local version.

2020-07-10 06:08:15 -0500 marked best answer simplest multiple-robot scenario

Was having trouble getting multiple robots to work, so I tried to boil it down to the simplest possible scenario. Here's what I have for a launch file:

<?xml version="1.0" encoding="utf-8"?>
<launch>
  <group ns="ns0">
    <param name="robot_description" command="cat '$(find urdf_tutorial)/urdf/01-myfirst.urdf'"/>
    <node name="my_stp" pkg="tf" type="static_transform_publisher" args="-1 0 0 0 0 0 /map base_link 100"/>
    <node name="my_jsp" pkg="joint_state_publisher" type="joint_state_publisher"/>
    <node name="my_rsp" pkg="robot_state_publisher" type="state_publisher"/>
  </group>

  <group ns="ns1">
    <param name="robot_description" command="cat '$(find urdf_tutorial)/urdf/02-multipleshapes.urdf'"/>
    <node name="my_stp" pkg="tf" type="static_transform_publisher" args="1 0 0 0 0 0 /map base_link 100"/>
    <node name="my_jsp" pkg="joint_state_publisher" type="joint_state_publisher"/>
    <node name="my_rsp" pkg="robot_state_publisher" type="state_publisher"/>
  </group>

  <node name="rviz" pkg="rviz" type="rviz" respawn="false" output="screen" args="-d $(find xxx)/config/xxx.rviz"/>
</launch>

And my xxx.rviz is the same as default.rviz with the addition of two RobotModels:

- Alpha: 1
      Class: rviz/RobotModel
      Collision Enabled: false
      Enabled: true
      Links:
        All Links Enabled: true
        Expand Joint Details: false
        Expand Link Details: false
        Expand Tree: false
        Link Tree Style: Links in Alphabetic Order
      Name: RobotModel
      Robot Description: ns0/robot_description
      TF Prefix: ""
      Update Interval: 0
      Value: true
      Visual Enabled: true
    - Alpha: 1
      Class: rviz/RobotModel
      Collision Enabled: false
      Enabled: true
      Links:
        All Links Enabled: true
        Expand Joint Details: false
        Expand Link Details: false
        Expand Tree: false
        Link Tree Style: ""
      Name: RobotModel
      Robot Description: ns1/robot_description
      TF Prefix: ""
      Update Interval: 0
      Value: true
      Visual Enabled: true

I would expect this to show 01-myfirst.urdf at position (-1,0,0) and 02-multipleshapes.urdf at position (1,0,0). However, it shows 02-multipleshapes.urdf flickering back and forth between the two positions. 01-myfirst.urdf is not shown at all. Can anyone explain what I'm missing?

2020-07-10 06:08:15 -0500 received badge  Self-Learner (source)
2020-07-10 06:08:15 -0500 received badge  Teacher (source)
2020-04-22 05:50:12 -0500 received badge  Popular Question (source)
2020-03-25 13:37:24 -0500 commented question externally set param on dynamic_reconfigure node

Thank you both. I feel a little dumb for not spotting some of this in the docs yesterday. dynparam does what I need. I a

2020-03-24 19:20:21 -0500 asked a question externally set param on dynamic_reconfigure node

externally set param on dynamic_reconfigure node I can set a param on a node using rosparam on the command line or using

2020-01-16 07:32:37 -0500 received badge  Famous Question (source)
2019-12-25 11:59:41 -0500 received badge  Notable Question (source)
2019-12-12 08:26:18 -0500 received badge  Notable Question (source)
2019-09-26 06:33:24 -0500 received badge  Famous Question (source)
2019-09-04 12:34:31 -0500 commented question Using Custom OpenCV Build in Ros Package

I wish I had a good answer for you. I was never able to get a locally compiled OpenCV to work the way you are doing it,

2019-09-02 00:28:17 -0500 received badge  Popular Question (source)
2019-09-02 00:28:17 -0500 received badge  Notable Question (source)
2019-09-02 00:28:17 -0500 received badge  Famous Question (source)
2019-08-30 16:34:44 -0500 received badge  Famous Question (source)
2019-08-26 17:13:56 -0500 commented question launch Gazebo from ROS2

After tinkering a bit, I'd consider this question to be answered. gazebo.launch.py is the ROS2 version of ROS1's empty_w

2019-08-26 16:12:15 -0500 commented question launch Gazebo from ROS2

Thanks for pointing it out. I think this is a step in the right direction; I'll need to scrutinize it more after meeting

2019-08-08 18:22:31 -0500 received badge  Notable Question (source)
2019-08-07 16:25:28 -0500 received badge  Popular Question (source)
2019-07-29 12:18:05 -0500 commented answer complex urdf files

Does anyone have an example of using a .xacro file in a ros2 launch script? I have tried the ros2 branch of the official

2019-07-25 01:28:16 -0500 received badge  Popular Question (source)
2019-07-22 10:49:23 -0500 received badge  Notable Question (source)
2019-07-22 10:47:12 -0500 received badge  Popular Question (source)
2019-07-16 15:56:45 -0500 asked a question launch Gazebo from ROS2

launch Gazebo from ROS2 I want to be able to launch Gazebo from a ROS2 launch script, but I'm running into some trouble.

2019-07-16 11:26:08 -0500 commented answer ros2 optionally launch node with no arguments

Has there been any progress on this? I think I'm having the same problem. I have gzserver = launch.actions.ExecuteProce

2019-07-16 11:25:32 -0500 commented answer ros2 optionally launch node with no arguments

Has there been any progress on this? I think I'm having the same problem. I have gzserver = launch.actions.ExecuteProce

2019-07-02 13:16:59 -0500 commented answer Building OpenCV from source for ROS

Thanks 130s. I had stopped looking at that page about 24 hours ago because I found the instructions confusing and it all

2019-07-02 10:43:28 -0500 edited question compiling stereo_image_proc with local OpenCV

compiling stereo_image_proc with local OpenCV I have read a few places that I should be able to compile stereo_image_pro

2019-07-02 10:38:43 -0500 asked a question compiling stereo_image_proc with local OpenCV

compiling stereo_image_proc with local OpenCV I have read a few places that I should be able to compile stereo_image_pro

2019-07-02 01:45:46 -0500 received badge  Popular Question (source)
2019-07-01 15:29:53 -0500 asked a question Building OpenCV from source for ROS

package.xml for OpenCV I'm in need of a newer version or OpenCV than is provided by my Ubuntu repo. Is there a version o

2019-03-21 19:54:05 -0500 commented answer Initial joint angles

This odd little workaround works for me. Thank you, bsaund :) Can anyone explain what's going on here in detail? I assum

2019-03-19 03:50:38 -0500 received badge  Notable Question (source)
2019-02-07 11:45:32 -0500 received badge  Supporter (source)
2018-11-15 16:29:36 -0500 commented question multiple point cloud sources for elevation_mapping

After cleaning, elevation_mapping computes variances using your choice of SensorProcessor class. This might be a problem

2018-11-15 16:26:23 -0500 commented question multiple point cloud sources for elevation_mapping

After elevation_mapping transforms clouds to your specified sensor_frame_id, it applies a cleaning step where you could

2018-11-15 16:22:58 -0500 commented question multiple point cloud sources for elevation_mapping

@gvdhoorn, thanks for all your help. In the end, I don't need to do any transform at all. elevation_mapping is doing thi

2018-10-31 16:55:23 -0500 commented question multiple point cloud sources for elevation_mapping

My original point cloud and transformed point cloud are in different frames, but I expect them to appear coincident in r