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

Rosewood's profile - activity

2019-04-16 15:22:31 -0500 received badge  Good Question (source)
2018-07-14 08:33:26 -0500 received badge  Famous Question (source)
2017-11-15 15:50:15 -0500 received badge  Famous Question (source)
2017-09-22 23:34:21 -0500 received badge  Notable Question (source)
2017-09-22 23:34:21 -0500 received badge  Popular Question (source)
2016-01-22 18:44:22 -0500 received badge  Famous Question (source)
2016-01-22 18:44:22 -0500 received badge  Notable Question (source)
2016-01-19 23:34:24 -0500 received badge  Famous Question (source)
2016-01-19 23:34:24 -0500 received badge  Notable Question (source)
2016-01-19 23:34:24 -0500 received badge  Popular Question (source)
2015-11-05 05:29:04 -0500 received badge  Famous Question (source)
2015-09-11 23:25:32 -0500 received badge  Taxonomist
2015-08-25 09:51:43 -0500 asked a question gmapping message removed in rviz because its to old

Hello everybody! I have problem with gmapping and rviz. I want to create a map of my gazebo world. Gazebo is using sim time, so I set the same for rviz. The laser scanner in rviz and gmapping say

Message removed because it is too old (frame=[laser_back], stamp=[14337.420000000])

When I pause the gazebo-simulation and press reset in rviz, the error disappears, but actually when I continue the gazebo-simulation it is the same. The time during the error message is the same as the shown ROS time in rviz and the sim time in gazebo. While running gmapping there is no tf_static (after tf static_transform_publisher). What is wrong?

2015-08-18 08:33:33 -0500 commented answer read raw_image compressed uint8[] data

I have another question. I can view the image of my topic compressed_image/compressed on rviz, but not on android teleop. The teleop subscribes to compressed_image. What can I do to make it runnable for android?

2015-08-04 21:29:19 -0500 received badge  Popular Question (source)
2015-08-04 04:04:38 -0500 asked a question Crosscompiling ROS for Raspberry PI (ARM)

Hello Everybody! I want to crosscompile ROS Packages for my Raspberry PI. I have an Ubuntu 14.04 with Indigo and Rasbian with Indigo. On my host system I've installed a toolchain and the boost libraries for arm and written a toolchain.cmake file. The normal crosscompiling is working (using a simple program with boost). Now my question is, how to realize the ROS part. My idea was just to copy the lib and the roscpp folder from the pi and replace it, but the PI says, that he can't execute the binary. Unfortunately the eros package is obsolete and I haven't found a description that worked for me.

2015-07-31 04:57:46 -0500 commented answer read raw_image compressed uint8[] data

First of all: it worked after deleting the build and devel folders. Thank you so much! I've tried to get an image on my android teleop app, but it's not working atm. So far, I don't understand the basic topics in image_transport. Could you give an example? It sounds nice.

2015-07-31 01:55:09 -0500 received badge  Notable Question (source)
2015-07-30 09:36:23 -0500 received badge  Editor (source)
2015-07-30 08:51:27 -0500 commented answer read raw_image compressed uint8[] data

According to rqt and rosnode info the node has subscribed. I'm starting with rosrun. How would you normally get data from image_raw/compressed, respectively from the UINt8[]. And ignore the "%s"..copied from another command :), but thanks for the hint.

2015-07-30 08:07:03 -0500 commented answer read raw_image compressed uint8[] data

The subscribed topic is image_raw/compressed and the output is the data array (see above). The data of my output topic is empty. Rqt says, that my talker node has subscribed for the topic. I think the problem is, that UInt8[] data is a stream.

2015-07-30 06:46:13 -0500 received badge  Popular Question (source)
2015-07-30 03:34:15 -0500 commented answer read raw_image compressed uint8[] data

Thanks cyborg, but he's still not sending data. When I do rostopic echo/image_raw/compressed, the output is data: [255, 216, 255, 224, 0, 16, .... (never ending story) and there is no rosout "test"

2015-07-29 09:14:06 -0500 asked a question read raw_image compressed uint8[] data

Hello everybody! I'm trying to read the datas of the "sensor_msgs/CompressedImage" message in a c++ program. Therefore I want to read the uint8[] data array. While using the callback function, nothing is happening (e.g. using ROS_INFO, when there is activity). When I'm watching the /image_raw/compressed topic, the data array is infinit. That's why I can't predefine an arraysize. Is there any possibility to get the data into a c++ code to read it separatly? Thanks

   // ROS ///////////////////////////////////////////
 ros::init(argc, argv, "talker_camera_eye");
ROS_INFO("%s", "start");
    ros::NodeHandle n;
   ros::Subscriber translation_sub = n.subscribe("wc_backdrive/camera_eye/image_raw/compressed", 1000, translateCallback);
ros::Publisher translation_pub = n.advertise<sensor_msgs::CompressedImage>("compressed_image", 1000);
  while (ros::ok())
  { 
translation_pub.publish(testmsg);
ros::spinOnce();
  }
  return 0;
}

//

void translateCallback(const sensor_msgs::CompressedImage::ConstPtr& msg)
{testmsg.data =msg->data;
//perturbedmsg.data = testmsg.data;
ROS_INFO("%s", msg->data.size());ROS_INFO( "test");
for (int i=0; i<msg->data.size();i++){
ROS_INFO( "test");
}
2015-07-28 08:24:12 -0500 commented answer DDS on ROS osrf prototype

Thanks for the answers. The Version of William works very well. Those guys did a good job and they've already released a paper.

2015-07-28 08:22:37 -0500 received badge  Notable Question (source)
2015-06-30 06:17:54 -0500 received badge  Nice Question (source)
2015-06-26 06:43:20 -0500 commented question DDS on ROS osrf prototype

Yeah, that was the plan. I want to have a showcase for DDS, favoring it with ROS (e.g. using gazebo) and I'm very interested in using ROS. I thought there'd be more development of it. Next I'll try the one of William down there.

2015-06-26 02:11:02 -0500 received badge  Popular Question (source)
2015-06-25 04:04:09 -0500 asked a question DDS on ROS osrf prototype

Hi everybody. At the moment I'm trying do build a DDS implementation on ROS. The only code I found about it was the https://github.com/osrf/ros_dds . I've build the cpp example and it worked, but when I want to build the prototype, the catkin_make is not working

***DDS parse error DDS undefined at line: 27 (searching from scope 'Time_')
make[2]: *** [~/ros_dds/ros_dds-master/prototype/devel/include/std_msgs/dds_impl/Time_.h] Error 255
make[1]: *** [ros-packages/std_msgs/CMakeFiles/std_msgs_generate_messages_idlcpp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[  7%] Built target actionlib_msgs_generate_messages_cpp
[  7%] Built target diagnostic_msgs_generate_messages_idl
[  7%] Built target diagnostic_msgs_generate_messages_cpp
make: *** [all] Error 2
Invoking "make" failed

Is there any solution for this? Is there any other prototype or developed thing? I don't want to wait until ROS2 is released :)

2015-06-25 02:15:43 -0500 received badge  Enthusiast
2015-06-24 06:49:00 -0500 answered a question ROS sending to DDS

Because of ROS using Linux, it is easier to realize it with DDS on Linux. ATM I'm trying to get through this: https://github.com/osrf/ros_dds They're using Opensplice as DDS.

2015-06-18 04:47:26 -0500 asked a question ros_nxt support and installation

Hello everybody! I want to run my Lego NXT Robot with ROS, e.g. using RVIZ. Although using Kubuntu 14.04, I'm not fixed on this. I've followed the installation turtorial ( http://wiki.ros.org/Robots/NXT/electric ) even when it is expired. I changed

sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu oneiric main" > /etc/apt/sources.list.d/ros-latest.list'

to trusty but sudo apt-get install ros-electric-nxtall says, that there are no files. Trying this with 12.04 it was the same. Are the sources shut down (or is it a problem with my installation)? Why is there no support anymore in the turtorial? I know this question has been asked many times, but I think this is a great topic. Even for kids to learn ROS.

2015-06-18 04:14:06 -0500 commented question ROS sending to DDS

Hi miltas, I am working on this topic too. I've done some research, but I only found this discussion: http://ros-users.122217.n3.nabble.com... How far are you with it?

2015-05-08 02:43:38 -0500 commented answer Is there a release date of ros 2 or more informations about it?

Thanks for your descriptions! I have just another question belonging to the download of the RTI connext dds. in https://github.com/ros2/examples/wiki it is mentioned, that you can download the packages for Ubuntu, but there is only a readhead download possible. Or do I have to register myself?

2015-05-07 10:35:25 -0500 received badge  Famous Question (source)
2015-05-06 03:56:08 -0500 received badge  Supporter (source)
2015-05-06 03:56:08 -0500 received badge  Scholar (source)
2015-05-06 01:20:24 -0500 received badge  Student (source)
2015-05-05 22:05:11 -0500 received badge  Notable Question (source)
2015-05-05 18:15:48 -0500 received badge  Popular Question (source)
2015-05-05 07:35:27 -0500 asked a question Is there a release date of ros 2 or more informations about it?

Hello everybody! I just want to know, if there are more informations than these at desing.ros2.org . Is there a release date? Is there a community discussing about it? I just found the presentation at the roscon last september.