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

Eric_ROS's profile - activity

2020-06-15 18:16:34 -0500 received badge  Good Question (source)
2019-08-01 09:16:00 -0500 received badge  Nice Question (source)
2018-01-23 23:13:54 -0500 received badge  Famous Question (source)
2017-11-06 18:50:36 -0500 marked best answer can not roslauunch Turtlebot in Docker container

Hello~ all

I create a docker to quickly setup ROS-indigo and Turtlebot packages on Ubuntu. I have Turtlebot PC and Remote PC. After testing, this docker works well on Remote PC to interact with Turtlebot PC. But unfortunately , if I run this docker on my Turtlebot PC, it's failed and shows some Error messages.

[ERROR] [1498784075.788970033]: Zeroconf: failed to create an avahi client.
zeroconf: client.c:785: avahi_client_get_state: Assertion `client' failed.
[zeroconf/zeroconf-13] process has died [pid 499, exit code -6, cmd /opt/ros/indigo/lib/zeroconf_avahi/zeroconf      
__name:=zeroconf __log:=/root/.ros/log/ae0eabf0-5d2e-11e7-a39a-0242ac110001/zeroconf-zeroconf-13.log].

does anybody know how to solve this ?? Thank you


After running "roslaunch turtlebot_bringup minimal.launch", the error message is shown as follows:

auto-starting new master
process[master]: started with pid [322]
ROS_MASTER_URI=http://172.17.0.1:11311

setting /run_id to ae0eabf0-5d2e-11e7-a39a-0242ac110001
process[rosout-1]: started with pid [335]
started core service [/rosout]
process[robot_state_publisher-2]: started with pid [353]
process[diagnostic_aggregator-3]: started with pid [354]
process[mobile_base_nodelet_manager-4]: started with pid [355]
process[mobile_base-5]: started with pid [356]
process[bumper2pointcloud-6]: started with pid [357]
process[cmd_vel_mux-7]: started with pid [358]
process[turtlebot_laptop_battery-8]: started with pid [359]
process[capability_server-9]: started with pid [360]
process[app_manager-10]: started with pid [421]
process[master-11]: started with pid [436]
process[interactions-12]: started with pid [468]
process[zeroconf/zeroconf-13]: started with pid [499]

[ERROR] [1498784075.788970033]: Zeroconf: failed to create an avahi client.

zeroconf: client.c:785: avahi_client_get_state: Assertion `client' failed.


[zeroconf/zeroconf-13] process has died [pid 499, exit code -6, cmd /opt/ros/indigo/lib/zeroconf_avahi/zeroconf      
__name:=zeroconf __log:=/root/.ros/log/ae0eabf0-5d2e-11e7-a39a-0242ac110001/zeroconf-zeroconf-13.log].
log file: /root/.ros/log/ae0eabf0-5d2e-11e7-a39a-0242ac110001/zeroconf-zeroconf-13*.log
2017-11-06 18:49:04 -0500 received badge  Notable Question (source)
2017-07-10 17:53:50 -0500 received badge  Popular Question (source)
2017-07-03 00:21:49 -0500 answered a question Problems launching rocon chatter concert inside of a Docker image

hello~ I create a docker which includes: 1. ROS indigo full installed version 2. turtlebot package After finishing the

2017-06-29 20:18:35 -0500 asked a question can not roslauunch Turtlebot in Docker container

can not roslauunch Turtlebot in Docker container Hello~ all I create a docker to quickly setup ROS-indigo and Turtlebot

2016-12-23 01:17:54 -0500 received badge  Famous Question (source)
2016-12-23 01:17:54 -0500 received badge  Notable Question (source)
2016-11-30 21:08:36 -0500 answered a question Can't install kobuki

Hello~tfoote Now I installed Ubuntu 16.04 and ROS-kinetic on Nvidia TX1 successfully. I tried to install turtlebot packages on it and type:

wstool init src https://raw.githubusercontent.com/turtle bot/turtlebot/kinetic/turtlebot.rosinstall -j8

=====================================================================

Exception caught during install: Error processing 'yocs_msgs' : [yocs_msgs] Checkout of https://github.com/yujinrobot/yocs_ms... version indigo into /home/ubuntu/program_files/nvidia/tx1/install/8_turtlebot_packages/kinect/turtlebot/turtlebot/src/yocs_msgs failed.

ERROR in config: Error processing 'yocs_msgs' : [yocs_msgs] Checkout of https://github.com/yujinrobot/yocs_ms... version indigo into /home/ubuntu/program_files/nvidia/tx1/install/8_turtlebot_packages/kinect/turtlebot/turtlebot/src/yocs_msgs failed.

=====================================================================

I tried it again, but the error is still occurred.

Before doing this, I tried to do turtlebot source installation as 1.3 steps: http://wiki.ros.org/turtlebot/Tutoria...

Some errors shows while installing Kobuki... The reason seems my gazebo is v7(too new???) which has diff function name to support kobuki's build.

Not sure how to do for next, need your suggestion and command. Thank you!! :)

2016-11-28 02:52:20 -0500 received badge  Popular Question (source)
2016-11-25 03:43:48 -0500 asked a question Unable to convert '32FC1' image for display: 'cv_bridge.cvtColorForDisplay()

Hello~ all

I just followed jetsonhacks tutorial to install ROS-kinetic on my Nvidia TX1 successfully. Then git clone git clone link text to install Microsoft Kinect V1 Driver. The steps is as follows:

$mkdir ~/kinectdriver 
$cd ~/kinectdriver 
$git clone https://github.com/avin2/SensorKinect/tree/master
$cd SensorKinect/Bin/
$tar xvjf SensorKinect093-Bin-Linux-x64-v5.1.2.1.tar.bz2
$cd Sensor-Bin-Linux-x64-v5.1.2.1/
$sudo ./install.sh

To test Kinect, I do these on different Terminal to show Depth Image:

  1. roscore
  2. roslaunch openni_launch openni.launch
  3. rosrun image_view image_view image:=/camera/rgb/image_color (<- RGB image shows successfully )
  4. rosrun image_view image_view image:=/camera/depth/image (<- Failed to show depth)

And an error occured with this info:

[ERROR] [1480065718.281091328]: Unable to convert '32FC1' image for display: 'cv_bridge.cvtColorForDisplay() while trying to convert image from '32FC1' to 'bgr8' an exception was thrown ([32FC1] is not a color format. but [bgr8] is. The conversion does not make sense)'

It looks like some problems of pixel format conversation. I google this and know the solution is to modify code. But the method is not clean... Anyone knows how to fix it?

Thank you!!

the solution link is link text

2016-11-21 21:51:13 -0500 commented answer Installing turtlebot on ROS kinetic

Hello~ all I also have the same problems to install Turtlebot packages on ROS-kinetic. I followed instruction to install turtlebot deb by replacing indigo to kinetic. but still some errors there...

Any obvious solution for this ? thank you!

2016-06-24 04:08:56 -0500 received badge  Student (source)
2016-03-04 22:19:10 -0500 received badge  Famous Question (source)
2016-01-14 00:08:55 -0500 received badge  Enthusiast
2016-01-12 11:38:16 -0500 received badge  Notable Question (source)
2016-01-12 07:51:54 -0500 received badge  Popular Question (source)
2016-01-11 20:14:46 -0500 asked a question What is "Rolling Window" used for?

Hello~ all Recently I do some research about Robot Navigation. I'd like to find a way to save new map updated by Local Plan(Scan) while doing navigation. I found a interesting parameter "Rolling Window"...but no idea how to use it. Just know the definition as follows


http://wiki.ros.org/costmap_2d

~<name>/rolling_window (bool, default: false) Whether or not to use a rolling window version of the costmap. If the static_map parameter is set to true, this parameter must be set to false.


If "Rolling Window" is a parameter that user can do navigation and discover unknown area. Then we might can find some way to save the updated map. I tried to killl "amcl" node and run "slam_gmapping" independently. But...it's still failed cuz all new scanned info & static map will be cleaned.

Please share if you know... (1) what's the correct meaning of "rolling window" and how to use it (2) how to successfully saved new scanned info as a map file

Appreciation :)

2016-01-06 08:58:53 -0500 commented answer Is it possible to navigate and build map at the same time?

Thanks for your sharing!! hector_slam is interesting!!

2016-01-06 06:45:40 -0500 received badge  Famous Question (source)
2016-01-06 04:22:39 -0500 commented answer Is it possible to navigate and build map at the same time?

Thanks for your sharing!!

2016-01-06 04:03:26 -0500 commented answer Is it possible to navigate and build map at the same time?

Thanks for your reply, Hector SLAM seems a great package for learning.

2016-01-05 13:47:57 -0500 received badge  Notable Question (source)
2016-01-05 11:43:42 -0500 received badge  Popular Question (source)
2016-01-05 09:52:57 -0500 asked a question Is it possible to navigate and build map at the same time?

Hello~ all I'm a starter to learn ROS. Now I focus on Navigation and map generation.

We know that autonomous navigation procedure is : Load map files(yaml & PGM files) => Localization(amcl) => User assigns the goal => Plan an ideal route (global planner+costmap) => obstacle avoidance (Local Planner+costmap) => Reached!!

It means we have to build a map beforehand, then we can do autonomous navigation. I'd like to know... (1) Is it possible to immediately update map if robot found a new obstacle not showed on the static map?

(2)is it possible to do autonomous navigation and build map at the same time. I mean...generate a small part of map and keep updating it to RObot for navigation?

I searched the forum and found the related article as follows, seems not available my request. http://answers.ros.org/question/37486...

Does anyone know about it? It would be better to give me some idea or suggestion.

Thanks