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

lakehanne's profile - activity

2022-10-31 07:36:30 -0500 received badge  Famous Question (source)
2019-02-26 05:29:53 -0500 received badge  Famous Question (source)
2019-02-26 05:29:53 -0500 received badge  Notable Question (source)
2019-02-19 03:38:28 -0500 received badge  Famous Question (source)
2018-10-30 19:33:24 -0500 received badge  Popular Question (source)
2018-10-30 19:33:24 -0500 received badge  Notable Question (source)
2018-09-18 19:50:32 -0500 marked best answer Transform geometry_msgs/TransformedStamped() to sensor_msgs/PointCloud2 on rospy

Hi people,

I have a geometry_msgs/TransformedStamped() vector which I am trying to translate to sensor_msgs/PointCloud2. I have looked aroun in the rospy api docs but nothing clear comes out strking.

Question: Has anyone ever used rospy to do this sort of transformation in the past? Example codes/pointing to api references would be helpful.

Thanks!

2018-08-31 11:21:46 -0500 received badge  Notable Question (source)
2018-08-31 11:21:46 -0500 received badge  Famous Question (source)
2018-06-25 07:33:35 -0500 received badge  Famous Question (source)
2018-06-24 05:07:38 -0500 answered a question ROS Serialization Values Error

Turns out that rospy_tutorials.Floats is a float32 object. In the subscriber code, ROS was downcasting the np.float64 be

2018-06-24 03:32:02 -0500 edited question ROS Serialization Values Error

ROS Serialization Values Error Hi there, I am trying to do a simple ipc over ros serial using the publish subscribe mod

2018-06-24 03:31:13 -0500 asked a question ROS Serialization Values Error

ROS Serialization Values Error Hi there, I am trying to do a simple ipc over ros serial using the publish subscribe mod

2018-05-17 03:38:28 -0500 received badge  Famous Question (source)
2018-05-17 03:38:28 -0500 received badge  Notable Question (source)
2017-10-17 04:41:08 -0500 received badge  Notable Question (source)
2017-10-17 04:41:08 -0500 received badge  Popular Question (source)
2017-10-17 04:41:08 -0500 received badge  Famous Question (source)
2017-09-13 19:34:19 -0500 marked best answer Reducing the publishing rate of a topic from RosLaunch

Hi there,

I have a custom-built robot which I am trying to control with move_it. I have written the urdf and generated the srdf using the move_it setup assistant. All the topics from my URDF are being broadcast on tf links at 30Hz based on a sensor_msgs/JointState node I wrote. I am trying to link the base of my robot to the vicon /world coodinate frame (I am using the vicon_bridge package ). For some reason, I find that the frames being broadcast by vicon are crazily high (to the order of 200 - 400Hz) and as a result, move_it is not updating the tf transforms because of errors such as the following:

ERROR] [1477965797.682768512]: Transform error: Lookup would require extrapolation into the future. Requested time 1477965797.631547473 but the latest data is at time 1477965797.626859796, when looking up transform from frame [headnball_link] to frame [world]

My tf view_frames is given by the attachment in the link http://tinypic.com/r/23uwtmo/9 . Is there a way to specify the publish limit to a nodefrom within a roslaunch file?

2017-09-13 19:33:05 -0500 received badge  Famous Question (source)
2017-06-16 12:12:32 -0500 commented answer Is there an alternative way to connect to machines through the same ROS?

Wifi or LAN.

2017-06-16 11:52:43 -0500 answered a question Is there an alternative way to connect to machines through the same ROS?

Via USB? It's not possible AFAIK. What transport protocol would you use through a USB serial connection? You can certain

2017-05-29 14:40:10 -0500 received badge  Notable Question (source)
2017-05-18 06:35:01 -0500 commented question link to opencv2 in kinetic

Please mark the answer as correct if it answer your question.

2017-05-17 21:07:01 -0500 edited answer link to opencv2 in kinetic

Adapted from this wiki: If you have OpenCV2 and OpenCV3 installed, find_package(OpenCV) in CMake will first find OpenCV

2017-05-17 21:05:26 -0500 answered a question link to opencv2 in kinetic

If you have OpenCV2 and OpenCV3 installed, find_package(OpenCV) in CMake will first find OpenCV3. If you want to expli

2017-05-07 14:55:15 -0500 marked best answer How to properly shut down a node

I have a code where I am checking for shutdown interrupt in a statement like so:

         int main()
          {
              bool  running(false);
              //running is set to true by a condition statement somewhere here
             for(; running || ros::ok() || !viewer->wasStopped() ;)
              {
               // ...             ...                          ...                  ...
               //do something
              }
          ros::shutdown();
          return 0;
       }

However, during runtime, when I do Ctrl + C, I get the usual warning ^C[ WARN] [1458383451.748234940]: Shutdown Signal Received. Shutting down ROS! but the node never shuts down.

Could I be missing something?

2017-05-03 23:51:13 -0500 commented question python virtualenvs conflict with kinetic

Try this: reinstall opencv3 while in the virtualenvs and specify the target install path to your virtualenvs opencv3 des

2017-05-01 14:18:34 -0500 received badge  Famous Question (source)
2017-04-30 16:27:58 -0500 edited answer Image Publisher and Subscriber in same node.

There are a couple of comments I have. First, you put your publisher within your callback function: void imageCa

2017-04-30 16:26:52 -0500 commented question Two quadrotors in a single robot

Question is too ambiguous. Can you post the link to the repo you are using and explain what you have done what you would

2017-04-30 14:36:59 -0500 commented question E: Unable to locate package ros-gazebo-ros-base error when I type in sudo apt-get ros-gazebo-ros-base

Can you share the link where you found it?

2017-04-30 14:35:10 -0500 answered a question Image Publisher and Subscriber in same node.

There are a couple of comments I have. First, you put your publisher within your callback function: void imageCa

2017-04-30 14:10:47 -0500 commented question sound_play noise/lock up with text to speech

You can test for shutdown using rospy.is_shutdown() method. The documentation reference is here.

2017-04-30 06:13:32 -0500 received badge  Notable Question (source)
2017-04-30 03:08:49 -0500 marked best answer Building cob_people_perception with catkin_make

Hi y'all,

I am trying to do face detection and position measurement with the Kinect for Windows v2 sensor. I have successfully calibrated the kinect camera and I need to port cob_people_perception over to my kinect v2 but while running catkin_make, I stumbled upon the following error:

-- +++ processing catkin package: 'cob_people_tracking_filter'
-- ==> add_subdirectory(cob_people_perception/cob_people_tracking_filter)
-- Using these message generators: gencpp;genlisp;genpy
CMake Error at /opt/ros/indigo/share/catkin/cmake/catkinConfig.cmake:75 (find_package):
  Could not find a package configuration file provided by
  "cob_perception_msgs" with any of the following names:

    cob_perception_msgsConfig.cmake
    cob_perception_msgs-config.cmake

  Add the installation prefix of "cob_perception_msgs" to CMAKE_PREFIX_PATH
  or set "cob_perception_msgs_DIR" to a directory containing one of the above
  files.  If "cob_perception_msgs" provides a separate development package or
  SDK, be sure it has been installed.
Call Stack (most recent call first):
  cob_people_perception/cob_people_tracking_filter/CMakeLists.txt:20 (find_package)

I'm wondering what I am missing?

2017-04-29 23:02:14 -0500 commented answer Ship a ROS package with Docker

I have removed the second ros-indigo-base install file and it's lesser in bytes. Thanks for your help though.

2017-04-29 23:01:09 -0500 marked best answer Ship a ROS package with Docker

Hi everyone,

I have a ROS package which has been well-tested with Caffe and Tensorflow + Cuda. It is quite a burden explaining to users how to use this package and I feel it is best to ship it to users as a docker image. Now, on the docker hub, I see osrf/ros images for example, indigo as well as gazebo (which btw are dependencies for this project).

I have created the dockerfile as well as built the docker image but I find that the ros environment within the docker build is not active. I cannot catkin_init_workspace, catkin build nor catkin make. For the record, I pulled the OSRF/ros_indigo image in building my ros environment. There is no ros installation path in /opt/ros/... either.

The instructions are scarce and I wonder what I may be doing wrong.

Would appreciate your help.

2017-04-29 23:00:52 -0500 edited question Ship a ROS package with Docker

Ship a ROS package with Docker Hi everyone, I have a ROS package which has been well-tested with Caffe and Tensorflow +

2017-04-29 22:52:59 -0500 commented question sound_play noise/lock up with text to speech

We need more background info to be able to help you. What text-to-speech package are you running? Can you post a link? I

2017-04-29 22:48:16 -0500 answered a question Add library to CMakeLists

System-wide libraries are resolved by CMake relative to /usr/local/lib if you are using a 32-bit architecture machine o

2017-04-28 18:14:26 -0500 commented answer Ship a ROS package with Docker

BTW, how did you compile your cuda-8.0? From .deb or via the .run file? I couldn't get my image to populate a matplotlib

2017-04-28 18:10:49 -0500 commented answer Ship a ROS package with Docker

Okay. Thanks for the clarification. I have cleaned it up and my dockerfile is here. Thank you!

2017-04-28 09:16:49 -0500 commented question Invalid <param> tag

Can you paste the link to the spawn_quadrotor.launch file? It would be difficult for anyone to debug your problem withou

2017-04-28 09:14:33 -0500 commented question Installation of ROS KINETIC in Ubuntu 16.04(Xenial)

Try running this: apt-get update -f