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

da-na's profile - activity

2022-08-26 03:12:21 -0500 received badge  Nice Question (source)
2022-06-18 23:04:42 -0500 received badge  Stellar Question (source)
2020-05-28 11:55:00 -0500 received badge  Good Question (source)
2018-10-18 12:12:50 -0500 received badge  Good Question (source)
2018-07-02 13:07:16 -0500 marked best answer rqt loading with requested perspective

Hi!

I'm having a problem with roslaunch rqt_gui rqt_gui. When I launch this command in terminal, only upper bar appears, then it disappears and appears again in different place, but the rqt_gui itself does not launch eventually. I believe it's connected to some plugin I wrote, though there are no error msgs in terminal. Is it possible to somehow run rqt_gui with requested perspective? I'd like to run rqt_gui with default perspective and try adding my plugin again, to see if it is the cause of my problem - now I'm not able to do anything in rqt.

Thanks in advance,

da-na

2017-11-20 13:28:42 -0500 received badge  Favorite Question (source)
2016-08-16 17:44:21 -0500 received badge  Nice Question (source)
2016-06-06 14:18:01 -0500 received badge  Great Question (source)
2016-03-28 16:13:34 -0500 received badge  Great Answer (source)
2016-03-28 16:13:34 -0500 received badge  Guru (source)
2015-10-26 13:03:54 -0500 marked best answer rosmake skeleton_markers fails - how to install ready-to-use package?

Hi!

I'd like to use skeleton_markers for displaying skeleton tracked by kinect in RViz on Ros fuerte, Ubuntu 12.04 x86. And I'm having problems.

I downloaded the skeleton_marker from svn, as suggested in ROS tutorial for skeleton-marker and I placed it in my ~/fuerte_wrkspc/sandbox (as suggested in tutorials for beginners). Now, when I try to

rosmake skeleton_markers

it gives an error :

[rosmake-0] Starting >>> skeleton_markers [ make ]                                                                                                                      
[ rosmake ] All 5 linesskeleton_markers: 0.1 sec ]                                                                                           [ 1 Active 34/35 Complete ]
{-------------------------------------------------------------------------------
  mkdir -p bin
  cd build && cmake -Wdev -DCMAKE_TOOLCHAIN_FILE=`rospack find rosbuild`/rostoolchain.cmake  ..
  CMake Error: The current CMakeCache.txt directory /home/da-na/fuerte_wrkspc/sandbox/skeleton_markers/build/CMakeCache.txt is different than the directory /home/da-na/fuerte_wrkspc/skeleton_markers/build where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt
  CMake Error: The source "/home/da-na/fuerte_wrkspc/sandbox/skeleton_markers/CMakeLists.txt" does not match the source "/home/da-na/fuerte_wrkspc/skeleton_markers/CMakeLists.txt" used to generate cache.  Re-run cmake with a different source directory.
-------------------------------------------------------------------------------}
[ rosmake ] Output from build of package skeleton_markers written to:
[ rosmake ]    /home/da-na/.ros/rosmake/rosmake_output-20130216-161404/skeleton_markers/build_output.log
[rosmake-0] Finished <<< skeleton_markers [FAIL] [ 0.13 seconds ]         rosmake skeleton_markers

I'm in the very begining of my adventure with ROS, so maybe I don't see some obvious steps that should be performed. I'll be gratefull for your help!

2015-10-17 04:34:08 -0500 received badge  Nice Question (source)
2015-10-11 14:45:41 -0500 marked best answer rqt saving configuration

Hi there!

I just discovered rqt which seems to be super cool thing :) Is there a way to save configuration? So next time I just load all the plugins I've chosen previosly? (Like loading config in RViz)

Cheers, da-na

2015-10-01 19:32:01 -0500 marked best answer adding robot_description to parameter server

Hi there!

I'd like to add robot_description to parameter server and frankly speaking, after reading the tutorial about making urdf, I still have no idea, how to do that.

In my launch file I did:

<launch>

  <node pkg="robot_state_publisher" type="state_publisher" name="robot_state_publisher">
    **<remap from="robot_description" to="$(find museumGuide)/urdf_model/peoplebot.xml" />**

    <remap from="joint_state" to="joint_state"/>
    <param name="publish_frequency" type="double" value="15.0"/>
    <param name="tf_prefix" type="string" value=""/>
  </node>

</launch>

But apparently this line remap from="robot_description" to="$(find museumGuide)/urdf_model/peoplebot.xml" / is wrong, as I get error:

remap to [/home/peoplebot/fuerte_wrkspc/sandbox/museumGuide/urdf_model/peoplebot.xml] is not a valid ROS name

I'd be gratefull for your help! Thanks in advance,

da-na

2015-07-04 14:36:30 -0500 marked best answer publishing negative values from command line

Hi!

Is it possible to publish negative values via rostopic pub ? I tried

rostopic pub -1 /my_point geometry_msgs/Point 1 2 3

with no problem, but when I try

rostopic pub -1 /my_point geometry_msgs/Point 1 -2 3

it says an error:

Usage: rostopic pub /topic type [args...]

rostopic: error: no such option: -2

Is it anyhow possible to publish negative values from terminal?

2015-06-30 06:37:36 -0500 marked best answer Autocompletion doesn't work via ssh

Hello! For some reasons when I use ssh connection autocompletion with ros-commands doesn't work. On the original computer tab completion works, but when I connect to it via ssh I cannot use tab completion :(

I have "source /opt/ros/fuerte/setup.bash" in my .bashrc

I get the following error, after writing roscd [+tab]

roscd terminate called after throwing an instance of 'std::runtime_error' what(): locale::facet::_S_create_c_locale name not valid terminate called after throwing an instance of 'std::runtime_error' what(): locale::facet::_S_create_c_locale name not valid

Anyone had the same problem?