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

arp's profile - activity

2019-05-20 02:35:27 -0500 marked best answer PCD to Octree

Hi,

I have a registered point-cloud as PCD file. I want to convert it into octree representation. There are two ways I could go. The first one is by using PCL. The second method by using octomap. Is there any difference between them? Which one should I choose? How could it be done using octomap?

Greetings

2017-02-03 15:29:59 -0500 marked best answer Limit Scan Angle for LMS100

Hi,

I am using the LMS1xx driver package for the LMS100 I have. The scan angle of the laser is 270 degrees. I want to reduce the scan angle of LMS100 to less than 180 degrees. Can the laser filter package do it? Or can it be done from the LMS1xx package itself?

2016-05-08 15:45:28 -0500 marked best answer ImportError: No module named _roslz4 after Installing from source

Hi,

I am trying to install ros on a slackware based distribution. I am following the instructions given on this page http://wiki.ros.org/indigo/Installati...

I am trying to do a staged installation. i.e. first I install in a temporary directory temp/opt/ros/indigo and then copy the resulting temp/opt/ros/indigo/ folder to the /opt/ros/indigo folder. I am able to compile ros without problems.

I source the setup.bash file from /opt/ros/indigo/ after that.

roscore also runs fine.

But when I run rostopic

I get the Error.

Traceback (most recent call last):
  File "/opt/ros/indigo/bin/rostopic", line 35, in <module>
    rostopic.rostopicmain()
  File "/opt/ros/indigo/lib64/python2.7/site-packages/rostopic/__init__.py", line 1752, in rostopicmain
    import rosbag
  File "/opt/ros/indigo/lib64/python2.7/site-packages/rosbag/__init__.py", line 33, in <module>
    from .bag import Bag, Compression, ROSBagException, ROSBagFormatException, ROSBagUnindexedException
  File "/opt/ros/indigo/lib64/python2.7/site-packages/rosbag/bag.py", line 64, in <module>
    import roslz4
  File "/opt/ros/indigo/lib64/python2.7/site-packages/roslz4/__init__.py", line 33, in <module>
    from _roslz4 import *
ImportError: No module named _roslz4

All other commands seem to have no problems. But the ros-commands where _roslz4 is imported the above error comes up.

2015-07-11 01:40:28 -0500 received badge  Famous Question (source)
2015-01-22 02:05:20 -0500 received badge  Good Question (source)
2015-01-14 11:16:46 -0500 received badge  Notable Question (source)
2014-12-17 04:52:58 -0500 commented answer How to change/remap ros node name in launch file?

In the example where you remap the topic from chatter to foobar, the node is of type talker and it's name is "talker". Can I change the node-name "talker" to "speaker"??

2014-12-17 04:47:45 -0500 received badge  Famous Question (source)
2014-12-15 01:35:50 -0500 commented answer How to change/remap ros node name in launch file?

Just to clarify. I am trying to rename a node after launching not the topics.

2014-12-15 01:35:50 -0500 received badge  Commentator
2014-12-15 01:32:38 -0500 commented answer How to change/remap ros node name in launch file?

I commented the remapping so file looks like:

<launch>
  <node pkg="turtlebot_teleop" type="turtlebot_teleop_key" name="turltebot_teleop_keyboard"/>
</launch>

I includeed this launch file and tried your answer and it does not rename the node. Does that mean I can't rename nodes?

2014-12-05 20:42:06 -0500 received badge  Notable Question (source)
2014-12-05 20:34:28 -0500 received badge  Nice Question (source)
2014-12-05 01:31:31 -0500 commented answer How to change/remap ros node name in launch file?

It still does not work. I am using hydro on Ubuntu 12.04. The output of rosnode list is

/rosout
/turtlebot_teleop_keyboard
2014-12-04 11:19:49 -0500 marked best answer ROS Wiki Citation

Hello,

What would be the correct way to cite to ROS-wiki? In a bibtex entry who should the author be, since it a community wiki?

Regards

2014-12-04 11:19:43 -0500 received badge  Good Question (source)
2014-12-04 09:59:20 -0500 received badge  Popular Question (source)
2014-12-04 02:53:12 -0500 asked a question How to change/remap ros node name in launch file?

Hi, I would like to rename a node from a launch file which includes other launch file. Is it possible?? If yes then how is it done.

Here is a launch file I am using. The included launch file names the node as turtlebot_teleop_keyboard. I want to rename the node launched in the included launch file. The following launch file does not rename the node.

<launch>
     <include file="$(find turtlebot_teleop)/launch/keyboard_teleop.launch"/>
     <remap from="turtlebot_teleop_keyboard" to="teleop"/>
</launch>
2014-11-17 01:22:57 -0500 commented answer ImportError: No module named _roslz4 after Installing from source

Should I convert the above as answer? I have still not figured out how to make it work by just adjusting the PYTHONPATH. It works though, just by moving the _roslz4.so shared library.

2014-11-17 01:21:09 -0500 received badge  Enthusiast
2014-11-14 06:04:46 -0500 received badge  Popular Question (source)
2014-11-14 04:45:50 -0500 commented answer ImportError: No module named _roslz4 after Installing from source

Ok. I got it working by moving the shared library _roslz4.so to <prefix>/lib64/python2.7/site-packages/ roslz4/. I was wondering shouldn't python look for for _roslz4.so once <prefix>/lib/python2.7/site-packages is on the PYTHONPATH??