Gazebo機器人仿真學習探索筆記(一)安裝與使用
Gazebo提供了多平臺的安裝和使用支持,大部分主流的linux,Mac以及Windows,這裏結合ROS以Ubuntu爲例進行介紹。
首先是參考資料:http://gazebosim.org/tutorials?cat=install
官方提供的安裝.sh文件解析(gazebo7_install.sh):
#!/bin/bash # Copyright (C) 2012-2016 Open Source Robotics Foundation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License. # Description:
# This script installs gazebo onto an Ubuntu system. codename=`lsb_release -sc` # Make sure we are running a valid Ubuntu distribution
case $codename in
"trusty" | "utopic" | "vivid" | "wily")
;;
*)
echo "This script will only work on Ubuntu trusty, utopic, vivid, and wily"
exit 0
esac # Add the OSRF repository
if [ ! -e /etc/apt/sources.list.d/gazebo-latest.list ]; then
sudo sh -c "echo \"deb http://packages.osrfoundation.org/gazebo/ubuntu ${codename} main\" > /etc/apt/sources.list.d/gazebo-latest.list"
fi # Download the OSRF keys
has_key=`apt-key list | grep "OSRF deb-builder"` echo "Downloading keys"
if [ -z "$has_key" ]; then
wget --quiet http://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add -
fi # Update apt
echo "Retrieving packages"
sudo apt-get update -qq
echo "OK" # Install gazebo
echo "Installing Gazebo"
sudo apt-get install gazebo7 libgazebo7-dev echo "Complete."
echo "Type gazebo to start the simulator."
首先,是檢查ubuntu的發行版本,符合"trusty" | "utopic" | "vivid" | "wily",符合的添加軟件源和密匙;
然後,使用sudo apt-get update更新,完成後顯示ok;
最後,使用sudo apt-get install gazebo7 libgazebo7-dev,完成全部安裝。
對於ROS Kinetic比較簡單直接使用:
~$ sudo apt-get install ros-kinetic-gazebo*
可以安裝相對應的功能包。
~$ sudo apt-get install gazebo7 libgazebo7
這樣就可以完成gazebo7的安裝。
完成後,在終端輸入gazebo,就可以啓動。
~$ gazebo
注意,模型加載,由於網絡問題會出現這樣錯誤和警告,請離線下載gazebo模型,放在home文件夾.gazebo/model下。
完成安裝後,就可以在界面上探索Gazebo7的基本操作。
附錄以下內容轉載自官方指南:
Intro
Welcome to the Beginner Module! This module will guide you through the mostbasic features of Gazebo. We will build a simple vehicle to demonstrate thesefeatures.
Each tutorial builds upon the last, so we recommend following the tutorials in order.
These tutorials are intended for those new to Gazebo and/or folks with no programming or Linux experience.
What is Gazebo?
Gazebo is a 3D dynamic simulator with the ability to accurately andefficiently simulate populations of robots in complex indoor and outdoorenvironments. While similar to game engines, Gazebo offers physicssimulation at a much higher degree of fidelity, a suite of sensors, andinterfaces for both users and programs.
Typical uses of Gazebo include:
testing robotics algorithms,
designing robots,
performing regression testing with realistic scenarios
A few key features of Gazebo include:
multiple physics engines,
a rich library of robot models and environments,
a wide variety of sensors,
convenient programmatic and graphical interfaces
System requirements
Gazebo is currently best used on Ubuntu, a flavor of Linux. You will need a computer that has:
- A dedicated GPU,
- Nvidia cards tend to work well in Ubuntu
- A CPU that is at least an Intel I5, or equivalent,
- At least 500MB of free disk space,
- Ubuntu Trusty or later installed.
Installation Instructions for Ubuntu
If you run into problems during the install, please see the complete install instructions.
Download the installer. If a window opens, you can close it again.
Copy the following text by pressing Ctrl-C:
chmod +x ~/Downloads/gazebo7_install.sh
Press Alt-F2
- A window with a prompt should appear in the upper left
Press Ctrl-V to paste the text, and press Enter
- The window will disappear
Copy the following by pressing Ctrl-C:
gnome-terminal --working-directory="~" -e "./Downloads/gazebo7_install.sh"
Press Alt-F2
- A window with a prompt should appear in the upper left
Press Ctrl-V to paste the text, and press Enter
- A new window will appear with a password prompt.
Enter your password, and press Enter
If prompted, press Y to continue
Wait until the window disappears
Run Gazebo
- Press Alt-F2
- Type "gazebo", and press Enter.
Install Gazebo using Ubuntu packages
Default installation: one-liner
Install
curl -ssL http://get.gazebosim.org | sh
Run
gazebo
Alternative installation: step-by-step
Setup your computer to accept software from packages.osrfoundation.org.
Note: there is a list of available mirrors for this repository which could improve the download speed.
sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-stable.list'
You can check to see if the file was written correctly. For example, in Ubuntu Trusty, you can type:
$ cat /etc/apt/sources.list.d/gazebo-stable.list
deb http://packages.osrfoundation.org/gazebo/ubuntu-stable trusty main
Setup keys
wget http://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add -
Install Gazebo.
First update the debian database:
sudo apt-get update
Hint: make sure the apt-get update process ends without any errors, the console output ends in
Done
similar to below:$ sudo apt-get update
...
Hit http://ppa.launchpad.net trusty/main Translation-en
Ign http://us.archive.ubuntu.com trusty/main Translation-en_US
Ign http://us.archive.ubuntu.com trusty/multiverse Translation-en_US
Ign http://us.archive.ubuntu.com trusty/restricted Translation-en_US
Ign http://us.archive.ubuntu.com trusty/universe Translation-en_US
Reading package lists... Done
Next install gazebo-7 by:
sudo apt-get install gazebo7
# For developers that work on top of Gazebo, one extra package
sudo apt-get install libgazebo7-dev
If you see the error below:
$ sudo apt-get install gazebo7
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package gazebo7
It's possible the version of Gazebo you are looking for is not supported on the version of OS you are using.For example, installing gazebo7 on Ubuntu Precise (12.04) will produce the error above.Hint: Take a look at "Project Status" section at http://gazebosim.org/#status, next to each version is the supported ubuntu versions and ROS versions.
Check your installation
Note The first time
gazebo
is executed requires the download of some models and it could take some time, please be patient.gazebo
Gazebo in different deb packages
Gazebo ships different Ubuntu debian packages following the official packagingguidelines. This changesbrings an option about how to install gazebo:
Use Gazebo as an application: for the users that just run Gazebo simulatorwith the provided plugins and models and do not plan on developing on top ofgazebo its own custom software. To use Gazebo 7.0, please install the packagecalled gazebo7.
Use Gazebo to develop software using Gazebo libraries: for users thatdevelop plugins or any other kind of software that needs Gazebo headers andlibraries. In this case, together with gazebo7 package, please installlibgazebo7-dev.
User Interface
This is an introduction to the Gazebo Graphical User Interface, or GUI. We will learn interface basics like what the buttons do and how to navigate in the scene.
By now, you should have Gazebo installed.
Start by opening Gazebo. Press Alt-F2, type Gazebo, and then press Enter.
GUI
This is what you should see:
Note that the Gazebo interface consists of multiple sections, explained below.
The Scene
The Scene is the main part of the simulator. This is where the simulatedobjects are animated and you interact with the environment.
The Panels
Both side panels—right and left—can be displayed, hidden or resized by draggingthe bar that separates them from the Scene.
Left Panel
The left panel appears by default when you launch Gazebo. There are three tabsin the panel:
WORLD: The World tab displays the models that are currently in thescene, and allows you to view and modify model parameters, like theirpose. You can also change the camera view angle by expanding the"GUI" option and tweaking the camera pose.
INSERT: The Insert tab is where you add new objects (models) to thesimulation. To see the model list, you may need to click the arrow to expand thefolder. Click (and release) on the model you want to insert, and clickagain in the Scene to add it.
LAYERS: The Layers tab organizes and displays the differentvisualization groups that are available in the simulation, if any. A layermay contain one or more models. Toggling a layer on or off will displayor hide the models in that layer.
This is an optional feature, so this tab will be empty inmost cases. To learn more about Layers, check out theVisibility Layerstutorial.
Right Panel (hidden by default)
The right panel is hidden by default. Click and drag the bar to open it. The right panel canbe used to interact with the mobile parts of a selected model (the joints). If there are nomodels selected in the Scene, the panel does not display any information.
The Toolbars
The Gazebo interface has two Toolbars. One is located just above the Scene, andthe other is just below.
Upper Toolbar
The main Toolbar includes some of the most-used options for interacting withthe simulator, such as buttons to: select, move, rotate, and scale objects;create simple shapes (e.g. cube, sphere, cylinder); and copy/paste. Go ahead and playaround with each button to see how it behaves.
Select mode: Navigate in the scene
Translate mode: Select models you want to move
Rotate mode: Select models you want to rotate
Scale mode: Select models you want to scale
Undo/Redo: Undo/redo actions in the scene
Simple shapes: Insert simple shapes into the scene
Lights: Add lights to the scene
Copy/paste: Copy/paste models in the scene
Align: Align models to one another
Snap: Snap one model to another
Change view: View the scene from various angles
Bottom Toolbar
The Bottom Toolbar displays data about the simulation, like the simulation timeand its relationship to real-life time. "Simulation time" refers to how quicklytime is passing in the simulator when a simulation is running. Simulation canbe slower or faster than real time, depending on how much computation isrequired to run the simulation.
"Real time" refers to the actual time that is passing in real life as thesimulator runs. The relationship between the simulation time and real time isknown as the "real time factor" (RTF). It's the ratio of simulation time to realtime. The RTF is a measure of how fast or slow your simulation is runningcompared to real time.
The state of the world in Gazebo is calculated once per iteration. You cansee the number of iterations on the right side of the bottom toolbar. Eachiteration advances simulation by a fixed number of seconds, called the stepsize. By default, the step size is 1 ms. You can pressthe pause button to pause the simulation and step through a few steps ata time using the step button.
The Menu
Like most applications, Gazebo has an application menu up top. Some of the menuoptions are duplicated in the Toolbars or as right-click context menu optionsin the Scene. Check out the various menus to familiarize yourself.
NOTE: Some Linux desktops hide application menus. If you don't see themenus, move your cursor to the top of the application window, and the menusshould appear.
Mouse Controls
The mouse is very useful when navigating in the Scene. We highly recommendusing a mouse with a scroll wheel. Below are the basic mouse operations fornavigating in the Scene and changing the view angle.
Right-clicking on models will open a context menu with various options.Right-click on a model now to see what's available.
Model Editor
Now we'll construct our simple robot. We'll make a wheeled vehicle and add a sensor that allows us to make the robot follow a blob (person).
The Model Editor lets us construct simple models right in the Graphical User Interface (GUI). For more complex models, you'll need to learn how to write SDF files, and check out the tutorials on building a robot.But for now, we can do everything right in the Gazebo GUI!
Model Editor User Interface
To enter the Model Editor, click on Edit
in the menu bar and select Model Editor
. Or, use the hotkeys, Ctrl+M. Physics and the simulation will be paused as soon as you are in the Model Editor.
The Model Editor interface looks similar to the main Gazebo UI but with some subtle differences. The left panel and top Toolbar now contain only widgets for editing and creating parts of the model. The bottom Toolbar that displays simulation data is hidden since the simulation is now paused.
Left Panel
The left panel, also known as the Palette, has two tabs.
INSERT tab: The Insert tab is where you add new parts (links and models)to the Model Editor. There are three sections.
- Simple Shapes: These are primitive geometries that can beinserted to form a link of the model.
- Custom Shapes: The
Add
button allows you to import custom meshes(currently supports COLLADA, STL, and SVG files) into the editor to forma link of the model. - Model Database: Located in the bottom half of the Palette is alist of models. These are models on your local computer or modelsavailable for download from the online model database.They can be inserted into the Model Editor in the same way as simple shapesand custom meshes. Once inserted, they become a part of the model you arebuilding. We refer to them as Nested Models.
MODEL tab: The Model tab allows you to set the name and basic parameters of the model youare building. It also displays a list of the links, joints, nested models, and plugins that are currentlypart of the model. You can view and modify a part's parameters, like its pose, in two ways: 1) by double-clicking on the part in the list, or 2) byright-clicking on the part and selecting Open Inspector from the context menu in the Scene.
Toolbar
Like in Simulation mode, the main Toolbar in the Model Editor includes tools for interacting with the objects in the Scene (see the User Interface tutorial).
A new Joint Creation tool is available; it is used to create joints between links in the model.
Limitations
The Model Editor supports most of the basic model building tasks that can be done by writing SDF. However, there are a few features that are notyet available:
adding and editing model plugins.
editing nested models and links within nested models.
adding and editing certain geometry types including Plane and Polyline.
support for heightmaps.
CAD functionalities.
Vehicle construction
Creating a vehicle
This section provides step-by-step instructions on creating a simple vehicle model in the Model Editor.
Chassis
First, we'll create the vehicle chassis. In the Insert tab in the left panel, click once on the Box icon, move the cursor to anywhere in the Scene, and click again to release the box.
Next, resize the box so that it looks more like the shape of a car chassis. We can do this by selecting the Scale tool located on the top Toolbar.Select the box in the Scene, and a RGB-colored marker should appear over the box. The red marker represents the X axis, green is Y, and blue is Z. Move the mouse over the red marker to highlight it, then click and drag to make the chassis longer along the X axis. Scale the chassisso it is roughly 2 meters long. You can estimate this by looking at the 1x1 meter grids on the ground.
Now flatten the chassis with the Scale tool. Click and drag the blue marker down so that the chassis is approximately half of its original size.
We want to lower the chassis closer to the ground. To give exact measurements, we will use the Link Inspector. Double-click on the box to bring up theInspector. Scroll down to the bottom of the Link tab to find the
Pose
parameters and changeZ
to be 0.4m. ClickOK
to save the changes and closethe Inspector.
Front Wheels
Let's move on to the front wheels. Start by inserting a cylinder from the Insert tab on the left panel.
The cylinder in its default orientation will not roll very well. Let's rotate it along the X axis using the Link Inspector. Double-click on the cylinder, scroll to the Pose section at the bottom, and change
Roll
to 1.5707 radians (90 degrees) and hit the Enter key on the keyboard. Do not close the Inspector just yet.Next, resize the wheel by giving it exact dimensions. Go to the Visual tab to see the list of visuals in this link. There should only be one. Expand the visual item by clicking on the small arrow next to the
visual
text label. Scroll down to theGeometry
section and change theRadius
to 0.3m andLength
to 0.25m.You should now see a smaller cylinder inside a bigger cylinder. This is expected as we have only changed the visual geometry but not the collision. A 'visual' is the graphical representation of the link and does not affect the physics simulation. On the other hand, a 'collision'is used by the physics engine for collision checking. To also update the wheel's collision, go to the Collision tab, expand the only collision item, and enter the same Geometry dimensions.
Radius
: 0.3m andLength
: 0.25m. Click onOK
to save the changes and close the Inspector.Now that we have created our first wheel, we'll use it as a template and make another one. Select the wheel and click on the Copy icon in the top Toolbar.
Click on the Paste icon and move the mouse back to the Scene to insert the copy.
Let's now make sure that the vehicle will drive correctly by aligning the chassis along the positive X axis (the red marker in the scene). When you add the wheels in the next step,make sure they are at the end of the vehicle that is extending along the positive X axis.
The chassis and the wheels are currently free-moving bodies. To constrain their motion, we'll add joints between each wheel and the chassis. Click on the Joint icon in the top Toolbar to bring up the Joint Creation dialog.
The Joint Creation dialog contains joint properties that are commonly specified for a joint. Before configuring any of the properties, you are prompted to select the parent and child links of the joint. Move the mouse over the chassis in the Scene to see it highlighted, and click on it to set it as theparent of the joint.
Move the mouse to the left front wheel; a line should now extend from the origin of the chassis to the end of the mouse. Click on the wheel to set it as the child of the joint. A new joint is created. By default it is a revolute joint (as indicated in the
Joint Types
section in the dialog) which justhappens to be the joint type we want.Note: You may find it useful to change the view angle at this point. This can be done in the Upper Toolbar; click the cube icon with an orange side.
Next, we need to configure the axis of rotation of the wheel. In the Joint Creation dialog, find the
Joint axis
section and change the axis to beZ
(0, 0, 1). Pay attention to the RGB joint visual on the wheel. You should see that a yellow ring now appears over the blue arrow of the joint visual toindicate that it is the axis of rotation.To align the wheel next to the chassis, we will use the different alignment options in the
Align links
section in the Joint Creation dialog. First we will align in the X axis, so click on theX Align Max
option to see the result of the alignment. The cylinder should be highlighted to indicate that itspose has changed.In our example, we want to position the wheel flush against the chassis. To bring the wheel closer, click the
Y Align Max
option. However, it is not quite what we want yet. Click theReverse
option next the Y alignment options to align the wheel's minimum (reverse of maximum) to the chassis's maximum.Note that theReverse
option is applied to the child link since the default alignment configuration shown in the drop down list below isChild to Parent
. IfParent to Child
configuration is set, theReverse
option will be applied to the parent link. PressCreate
.To position the wheel above the ground, open the Link Inspector by double-clicking on the wheel. We can use the
Pose
section at the bottom of the dialog to move the wheel. Given that the wheel has a radius of 0.3m, go ahead and change theZ
position to 0.3m to place on the ground, and pressOk
.Repeat the joint creation process and axis configuration for the other front wheel, make sure that a) the chassis is the parent of the joint and the wheel is the child, b) the axis of rotation is set to
Z
, and c) use theY Align Min
option to align the right wheel as it is on the other side of the chassis.
Caster Wheel
To make a caster wheel for the vehicle, click on the Sphere button on the Left Panel and insert it into the scene.
Resize the sphere by giving it exact dimensions in the same way you did for the front wheels. Go to the Visual tab to see the list of visuals in this link, expand the only visual item, scroll down to the
Geometry
section and change theRadius
to 0.2m. Make sure to also do the same to the collision in theCollision tab.To create a joint between the caster wheel and the chassis, bring up the Joint Creation dialog by clicking on the Joint icon in the top Toolbar. Move the mouse to the Scene and select the chassis as the parent link and the sphere as the child link.
Unlike the front wheel joints, a caster wheel rolls in all directions and does not have a specific axis of rotation. In Gazebo, this is simulated using a ball joint. So under the
Joint types
section, select theBall
joint option. You should see the joint visual in the scene change color to indicate adifferent joint type has been set.Next, align the caster wheel so that it is centered with the chassis and positioned at the rear end. In the Align links section, select the
Y Align Center
option to center the two links in theY
axis, and select theX Align Min
option to move the caster wheel so it is placed right at the back of the vehicle. Press theCreate
button to finish the joint creation process.Finally, position the caster wheel so that it sits just above the ground. Do this by opening the Link Inspector and setting the
Z
position to 0.2m.
Adding a sensor
The sensor we will add to the car is a depth camera sensor which is going to help us detect objects in front of the car. In this tutorial, we will insert an existing sensor model from the model database.
Go to the Palette (left panel) and select the
Insert
tab to see a list of models available in theModel Database
section.The models in the lists are organized by the path in which they are located. As you can see, the first list contains models available on your local machine as indicated by the path in the title. If you are a first-time user, you may not see many models in the lists. More will appear as you download them fromthe online model database. Find the list with the path
http://gazebosim.org/models/
and expand it to see models available from the online model database.The models are arranged in alphabetical order. Find Depth Camera in the list and click on it to start downloading the model. This may take a few seconds depending on the network connectivity.
Once the download is complete, you should see the depth camera model appear in the Scene. It looks like a small cube. Move the mouse over to the Scene and click on an empty space in front of the car to insert the depth camera.
Select the Translate tool in the top Toolbar and move the depth camera so that it sits on top of the chassis at the front of the vehicle and roughly centered in the
Y
axis.Next, fix the depth camera to the chassis. Click on the Joint icon in the top Toolbar to open the Joint Creation dialog. Move the mouse to the Scene and select the chassis as the parent link and the depth camera as the child link.
In the Joint Creation dialog under the
Joint Types
section, select theFixed
joint option, and click onCreate
to finish creating the joint.
Adding a plugin
The vehicle we have built so far is complete with all of the physical and sensor components. However, it will not really do much but stay still and generate depth data in simulation. Plugins are a great way to enhance the model with some autonomy by allowing it to perform computations such as sensor dataprocessing, path planning, and control. For simplicity, this tutorial will use an existing plugin for our vehicle. Note that it is possible to create your own plugins but it requires writing code. See the Plugin tutorials.
Go to the left panel and select the
Model
tab to see the parts that make up the car model you built.Under
Model Plugins
, you should see anAdd
button. Click on it to bring up a Model Plugin Inspector that lets you add a new plugin to the model.First, give the plugin a name. Enter
follower
in thePlugin Name
field. The plugin name has to be unique within this model.The plugin we are going to use is called
libFollowerPlugin.so
so enter this in theFilename
field. The filename corresponds to the actual filename of the plugin library stored on your local machine. It exists in the form of a dynamically linked shared object library, hence the naming convention and theextension.so
(on Linux). Do not worry if you are using Gazebo on other operating systems as the extension will be automatically replaced with the correct one.The
follower
plugin does not require any additional parameters so you can leave theInnerxml
field empty. Note: This is a simple plugin for demonstration purposes. Plugins typically have various parameters associated, e.g. a differential drive plugin requires specifying the name of joints controlling theleft and right wheels so it can move the vehicle in the correct direction. In the case of thefollower
plugin, it makes many assumptions on the type of model it is attached to and tries to find the joints and sensor automatically.Click
OK
to add the plugin. The plugin should now appear underModel Plugins
in the left panel.
Save your model
Save the model by going to the
File
menu and selectingSave As
. Enter a name for the model and clickSave
.Exit the Model Editor by going to
File
and selectingExit Model Editor
. Gazebo should now switch back to normal simulation mode. Hit the Play button to run the simulation.To test that the plugin is working, insert a box in front of the car and see the car move slowly towards it.
If you want to edit the model again later, just right-click on it and select Edit Model
in the context menu.
Gazebo機器人仿真學習探索筆記(一)安裝與使用的更多相关文章
- Gazebo機器人仿真學習探索筆記(二)基本使用說明
在完成Gazebo7安裝後,需要熟悉Gazebo,方便之後使用. 部分源代碼可以參考:https://bitbucket.org/osrf/gazebo/src/ 如果還沒有安裝請參考之前內容完成安裝 ...
- Gazebo機器人仿真學習探索筆記(三)機器人模型
gazebo_models:https://bitbucket.org/osrf/gazebo_models 模型庫下載,可以參考如下命令: ~/Rob_Soft/Gazebo7$ hg clone ...
- Gazebo機器人仿真學習探索筆記(四)模型編輯
模型編輯主要是自定義編輯物體模型構建環境,也可以將多種模型組合爲新模型等,支持外部模型導入, 需要注意的導入模型格式有相應要求,否在無法導入成功, COLLADA (dae), STereoLitho ...
- Gazebo機器人仿真學習探索筆記(七)连接ROS
中文稍后补充,先上官方原版教程.ROS Kinetic 搭配 Gazebo 7 附件----官方教程 Tutorial: ROS integration overview As of Gazebo 1 ...
- Gazebo機器人仿真學習探索筆記(六)工具和实用程序
Gazebo附带了许多工具和实用程序. 这些教程说明了这些可用的工具,以及如何使用它们. 主要有: 1 记录和播放 2 日志过滤 3 应用力/扭矩 4 HDF5数据集 官网介绍通俗具体,非常容易,请参 ...
- Gazebo機器人仿真學習探索筆記(五)環境模型
環境模型構建可以通過向其中添加模型實現,待之後補充,比較有趣的是建築物模型, 可以編輯多層樓層和房間,加入樓梯,窗戶和牆壁等,具體可以參考附錄,等有空再補充. 起伏地形環境構建可以參考之前內容:在Ga ...
- ROS_Kinetic_x 基於ROS和Gazebo的RoboCup中型組仿真系統(多機器人協作)
國防科學技術大學發布了RoboCup中型組仿真平臺,基於ROS和Gazebo設計. 該平臺可以用於多機器人協作研究.參考資料如下: ROS新聞:1 http://www.ros.org/news ...
- ROS常用三維機器人仿真工具Gazebo教程匯總
參考網址: 1. http://gazebosim.org/tutorials 2. http://gazebosim.org/tutorials/browse Gazebo Tutorials Ga ...
- ROS_Kinetic_x 目前已更新的常用機器人資料 rosbridge agvs pioneer_teleop nao TurtleBot
Running Rosbridge Description: This tutorial shows you how to launch a rosbridge server and talk to ...
随机推荐
- [HNOI 2015]落忆枫音
Description 「恒逸,你相信灵魂的存在吗?」 郭恒逸和姚枫茜漫步在枫音乡的街道上.望着漫天飞舞的红枫,枫茜突然问出 这样一个问题. 「相信吧.不然我们是什么,一团肉吗?要不是有灵魂……我们 ...
- [HNOI 2010]Bounce 弹飞绵羊
Description 某天,Lostmonkey发明了一种超级弹力装置,为了在他的绵羊朋友面前显摆,他邀请小绵羊一起玩个游戏.游戏一开始,Lostmonkey在地上沿着一条直线摆上n个装置,每个装置 ...
- [JSOI2007]祖码Zuma
题目描述 这是一个流行在Jsoi的游戏,名称为祖玛. 精致细腻的背景,外加神秘的印加音乐衬托,彷佛置身在古老的国度里面,进行一个神秘的游戏——这就是著名的祖玛游戏.祖玛游戏的主角是一只石青蛙,石青蛙会 ...
- 【LSGDOJ 1351】关灯
题目描述 多瑞卡得到了一份有趣而高薪的工作.每天早晨他必须关掉他所在村庄的街灯.所有的街灯都被设置在一条直路的同一侧. 多瑞卡每晚到早晨 5 点钟都在晚会上,然后他开始关灯.开始时,他站在某一盏路灯的 ...
- 镜像文件、光盘、iso文件、启动盘
刚入大学,有一门计算机硬件维修课程,韩国彬老师(学生们公认的好老师).当时韩老师教给了我们好多实用的好东西,例如装系统,做镜像文件,装虚拟机,ghost版本系统,计算机组装等等.由于高中刚刚过度到大学 ...
- Cloud TPU Demos(TensorFlow 云 TPU 样例代码)
Cloud TPU Demos 这是一个Python脚本的集合,适合在开源TensorFlow和 Cloud TPU 上运行. 如果您想对模型做出任何修改或改进,请提交一个 PR ! https:// ...
- Cisco 的基本配置实例之五----交换机的路由功能与DHCP 功能
5.配置交换机的路由功能 说明:只有在三层交换机上才有路由功能,其他的二层接入交换机要想在不同的vlan之间传送数据需要通过trunk口到核心交换机上进行完路由交换后才可以. TEST(config) ...
- Mysql 获取表的comment 字段
查看获取表内字段注释: > show full columns from tablename; 或是 show full fields from tablename; 或是,在元数据的表里面看 ...
- Java HashMap的扩容
最近博主参加面试,发现自己对于Java的HashMap的扩容过程理解不足,故最近在此进行总结. 首先说明博主德Java为1.8版本 HashMap中的变量 首先要了解HashMap的扩容过程,我们就得 ...
- axios的兼容性处理
一.简介 看看官网的简介: "Promise based HTTP client for the browser and node.js" 译:基于 Promise 的 HTTP ...