-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcontribute.html
1158 lines (469 loc) · 41.6 KB
/
contribute.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="zh-hans" >
<head>
<meta charset="UTF-8">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>贡献文章 · HandsFree Tutorial</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="">
<meta name="generator" content="GitBook 3.2.2">
<meta name="author" content="Robocoder">
<link rel="stylesheet" href="gitbook/style.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-search-plus/search.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-disqus/plugin.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-prism/prism-base16-ateliersulphurpool.light.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-advanced-emoji/emoji-website.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-anchors/plugin.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-ace/ace.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-emphasize/plugin.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-katex/katex.min.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-splitter/splitter.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-tbfed-pagefooter/footer.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-expandable-chapters-small/expandable-chapters-small.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-sectionx/sectionx.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-local-video/video-js.min.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-anchor-navigation-ex/style/plugin.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-terminal/plugin.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-alerts/style.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-latex-codecogs/latex-codecogs.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-fontsettings/website.css">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="gitbook/images/favicon.ico" type="image/x-icon">
<link rel="next" href="./" />
<link rel="stylesheet" href="gitbook/gitbook-plugin-chart/c3/c3.min.css">
<script src="gitbook/gitbook-plugin-chart/c3/d3.min.js"></script>
<script src="gitbook/gitbook-plugin-chart/c3/c3.min.js"></script>
<script src="gitbook/gitbook-plugin-graph/d3.min.js"></script>
<script src="gitbook/gitbook-plugin-graph/function-plot.js"></script>
<link rel="shortcut icon" href='favicon.ico' type="image/x-icon">
<link rel="bookmark" href='favicon.ico' type="image/x-icon">
<style>
@media only screen and (max-width: 640px) {
.book-header .hidden-mobile {
display: none;
}
}
</style>
<script>
window["gitbook-plugin-github-buttons"] = {"repo":"HANDS-FREE/handsfree_wiki","types":["star"],"size":"small"};
</script>
</head>
<body>
<div class="book">
<div class="book-summary">
<div id="book-search-input" role="search">
<input type="text" placeholder="输入并搜索" />
</div>
<nav role="navigation">
<ul class="summary">
<li>
<a href="https://www.taobotics.com/" target="_blank" class="custom-link">官方网站</a>
</li>
<li class="divider"></li>
<li class="chapter active" data-level="1.1" data-path="contribute.html">
<a href="contribute.html">
贡献文章
</a>
</li>
<li class="chapter " data-level="1.2" data-path="./">
<a href="./">
综合介绍
</a>
</li>
<li class="chapter " data-level="1.3" data-path="docs/About/">
<a href="docs/About/">
关于
</a>
<ul class="articles">
<li class="chapter " data-level="1.3.1" data-path="docs/About/Project-Overview.html">
<a href="docs/About/Project-Overview.html">
项目介绍
</a>
</li>
<li class="chapter " data-level="1.3.2" data-path="docs/About/About-US.html">
<a href="docs/About/About-US.html">
关于我们
</a>
</li>
<li class="chapter " data-level="1.3.3" data-path="docs/About/Why-HandsFree.html">
<a href="docs/About/Why-HandsFree.html">
为什么要有HandsFree
</a>
</li>
<li class="chapter " data-level="1.3.4" data-path="docs/About/Story-And-Wine.html">
<a href="docs/About/Story-And-Wine.html">
故事和酒
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.4" data-path="docs/Products/">
<a href="docs/Products/">
产品介绍
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.1" data-path="docs/Products/Mini.html">
<a href="docs/Products/Mini.html">
Mini机器人
</a>
</li>
<li class="chapter " data-level="1.4.2" data-path="docs/Products/Stone.html">
<a href="docs/Products/Stone.html">
Stone机器人
</a>
</li>
<li class="chapter " data-level="1.4.3" data-path="docs/Products/Giraffe.html">
<a href="docs/Products/Giraffe.html">
Giraffe机器人
</a>
</li>
<li class="chapter " data-level="1.4.4" data-path="docs/Products/Scout.html">
<a href="docs/Products/Scout.html">
Scout机器人
</a>
</li>
<li class="chapter " data-level="1.4.5" data-path="docs/Products/RTMapper.html">
<a href="docs/Products/RTMapper.html">
RTMapper无人机系统
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.5" data-path="docs/Tutorial/">
<a href="docs/Tutorial/">
初级教程
</a>
<ul class="articles">
<li class="chapter " data-level="1.5.1" data-path="docs/Tutorial/1.1-Getting-Started.html">
<a href="docs/Tutorial/1.1-Getting-Started.html">
准备开始
</a>
</li>
<li class="chapter " data-level="1.5.2" data-path="docs/Tutorial/1.2-First-Experiment.html">
<a href="docs/Tutorial/1.2-First-Experiment.html">
远程遥控机器人
</a>
</li>
<li class="chapter " data-level="1.5.3" data-path="docs/Tutorial/2.1-Mapping.html">
<a href="docs/Tutorial/2.1-Mapping.html">
雷达建图
</a>
</li>
<li class="chapter " data-level="1.5.4" data-path="docs/Tutorial/2.1-Navigation.html">
<a href="docs/Tutorial/2.1-Navigation.html">
自主导航
</a>
</li>
<li class="chapter " data-level="1.5.5" data-path="docs/Tutorial/2.2-RGBD-Test.html">
<a href="docs/Tutorial/2.2-RGBD-Test.html">
RGBD摄像头实验
</a>
</li>
<li class="chapter " data-level="1.5.6" data-path="docs/Tutorial/2.3-Vision-Test.html">
<a href="docs/Tutorial/2.3-Vision-Test.html">
视觉实验
</a>
</li>
<li class="chapter " data-level="1.5.7" data-path="docs/Tutorial/2.4-Head-Tracking.html">
<a href="docs/Tutorial/2.4-Head-Tracking.html">
云台跟踪实验
</a>
</li>
<li class="chapter " data-level="1.5.8" data-path="docs/Tutorial/3.1-Simulation.html">
<a href="docs/Tutorial/3.1-Simulation.html">
仿真实验
</a>
</li>
<li class="chapter " data-level="1.5.9" data-path="docs/Tutorial/RGBDSLAMV2.html">
<a href="docs/Tutorial/RGBDSLAMV2.html">
RGBDSLAM v2实验
</a>
</li>
<li class="chapter " data-level="1.5.10" data-path="docs/Tutorial/ORBSLAM2.html">
<a href="docs/Tutorial/ORBSLAM2.html">
ORB_SLAM2 实验
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.6" data-path="docs/Tutorial/Advanced/">
<a href="docs/Tutorial/Advanced/">
进阶教程
</a>
<ul class="articles">
<li class="chapter " data-level="1.6.1" data-path="docs/Tutorial/Advanced/Behavior-Tree/">
<a href="docs/Tutorial/Advanced/Behavior-Tree/">
行为树
</a>
</li>
<li class="chapter " data-level="1.6.2" data-path="docs/Tutorial/Advanced/Object-Recognition/">
<a href="docs/Tutorial/Advanced/Object-Recognition/">
目标识别
</a>
</li>
<li class="chapter " data-level="1.6.3" data-path="docs/Tutorial/Advanced/Person-Follower/">
<a href="docs/Tutorial/Advanced/Person-Follower/">
人体跟踪
</a>
</li>
<li class="chapter " data-level="1.6.4" data-path="docs/Tutorial/Advanced/Object-Pick-Place/">
<a href="docs/Tutorial/Advanced/Object-Pick-Place/">
目标抓取
</a>
</li>
<li class="chapter " data-level="1.6.5" data-path="docs/Tutorial/Advanced/Multi-Robot/">
<a href="docs/Tutorial/Advanced/Multi-Robot/">
多机器人
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.7" data-path="docs/OpenRE/">
<a href="docs/OpenRE/">
OpenRE教程
</a>
<ul class="articles">
<li class="chapter " data-level="1.7.1" data-path="docs/OpenRE/Getting-Started.html">
<a href="docs/OpenRE/Getting-Started.html">
开始
</a>
</li>
<li class="chapter " data-level="1.7.2" data-path="docs/OpenRE/Architecture.html">
<a href="docs/OpenRE/Architecture.html">
架构介绍
</a>
</li>
<li class="chapter " data-level="1.7.3" data-path="docs/OpenRE/Develop.html">
<a href="docs/OpenRE/Develop.html">
开发
</a>
</li>
<li class="chapter " data-level="1.7.4" data-path="docs/OpenRE/HFLink.html">
<a href="docs/OpenRE/HFLink.html">
HFLink通信协议
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.8" data-path="docs/Hardware/">
<a href="docs/Hardware/">
硬件手册
</a>
<ul class="articles">
<li class="chapter " data-level="1.8.1" data-path="docs/Hardware/Devices-Sensors.html">
<a href="docs/Hardware/Devices-Sensors.html">
设备和传感器
</a>
</li>
<li class="chapter " data-level="1.8.2" data-path="docs/Hardware/OpenRE-Board.html">
<a href="docs/Hardware/OpenRE-Board.html">
主控制器
</a>
</li>
<li class="chapter " data-level="1.8.3" data-path="docs/Hardware/Power-Manager.html">
<a href="docs/Hardware/Power-Manager.html">
电源管理系统
</a>
</li>
<li class="chapter " data-level="1.8.4" data-path="docs/Hardware/Module.html">
<a href="docs/Hardware/Module.html">
电路模块
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.9" data-path="docs/Appendix/">
<a href="docs/Appendix/">
附录
</a>
<ul class="articles">
<li class="chapter " data-level="1.9.1" data-path="docs/Appendix/HandsFree_VS_Turtlebot/Comparison.html">
<a href="docs/Appendix/HandsFree_VS_Turtlebot/Comparison.html">
附录1:HandsFree Vs Turtlebot
</a>
</li>
<li class="chapter " data-level="1.9.2" data-path="docs/Appendix/Robotics_Learning/Robotics-Learning.html">
<a href="docs/Appendix/Robotics_Learning/Robotics-Learning.html">
附录2:机器人学习规划
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.10" data-path="docs/FAQ/">
<a href="docs/FAQ/">
常见问题解决方法
</a>
<ul class="articles">
<li class="chapter " data-level="1.10.1" data-path="docs/FAQ/when-usb-was-broken.html">
<a href="docs/FAQ/when-usb-was-broken.html">
把电路板USB插坏了怎么办?
</a>
</li>
<li class="chapter " data-level="1.10.2" data-path="docs/FAQ/when-motor-interface-was-broken.html">
<a href="docs/FAQ/when-motor-interface-was-broken.html">
把电机接口插坏了怎么办?
</a>
</li>
<li class="chapter " data-level="1.10.3" data-path="docs/FAQ/how-to-get-IP.html">
<a href="docs/FAQ/how-to-get-IP.html">
如何获取工控机IP地址?
</a>
</li>
<li class="chapter " data-level="1.10.4" data-path="docs/FAQ/solution-of-handsfree-hw-error.html">
<a href="docs/FAQ/solution-of-handsfree-hw-error.html">
handsfree_hw节点出现错误
</a>
</li>
<li class="chapter " data-level="1.10.5" data-path="docs/FAQ/OpenRE-make&make-burn-error.html">
<a href="docs/FAQ/OpenRE-make&make-burn-error.html">
OpenRE编译和烧录报错
</a>
</li>
<li class="chapter " data-level="1.10.6" data-path="docs/FAQ/reason-for-alarming.html">
<a href="docs/FAQ/reason-for-alarming.html">
机器人滴滴报警怎么办
</a>
</li>
<li class="chapter " data-level="1.10.7" data-path="docs/FAQ/environment_config.html">
<a href="docs/FAQ/environment_config.html">
如何配置环境
</a>
</li>
<li class="chapter " data-level="1.10.8" data-path="docs/FAQ/how-to-use-mirror.html">
<a href="docs/FAQ/how-to-use-mirror.html">
HandsFree系统镜像
</a>
</li>
</ul>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
本书使用 GitBook 发布
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href="." >贡献文章</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<div id="book-search-results">
<div class="search-noresults">
<section class="normal markdown-section">
<div id="anchor-navigation-ex-navbar"><i class="fa fa-anchor"></i><ul><li><a href="#如何贡献项目">1. 如何贡献项目</a></li><ul><li><a href="#概述">1.1. 概述</a></li><li><a href="#如何贡献文档">1.2. 如何贡献文档</a></li><li><a href="#语法和排版规范">1.3. 语法和排版规范</a></li><li><a href="#排版模板">1.4. 排版模板</a></li></ul></ul></div><a href="#如何贡献项目" id="anchorNavigationExGoTop"><i class="fa fa-arrow-up"></i></a><h1 id="如何贡献项目"><a name="如何贡献项目" class="anchor-navigation-ex-anchor" href="#如何贡献项目"><i class="fa fa-link" aria-hidden="true"></i></a>1. 如何贡献项目</h1>
<p>HandsFree是一个希望推动国内机器教育的开源项目,如果你感兴趣,可以参与该Wiki的教程编写,作为社区回馈,我们会根据提交的教程水准,赠送作者机器人相关配件,书籍,雷达,摄像头,以及HandsFree机器人平台等。 </p>
<blockquote>
<p>只要提交教程就有礼品喔~。</p>
</blockquote>
<h2 id="概述"><a name="概述" class="anchor-navigation-ex-anchor" href="#概述"><i class="fa fa-link" aria-hidden="true"></i></a>1.1. 概述</h2>
<p>本wiki以<a href="https://www.gitbook.com" target="_blank">Gitbook</a>的形式编写,源文件存储于: <a href="https://github.com/mawenke/handsfree_wiki" target="_blank">https://github.com/mawenke/handsfree_wiki</a></p>
<p>特殊目录介绍</p>
<ul>
<li>docs 目录用于存放md文件</li>
<li>images 目录用于存放md引用的图片</li>
<li>docs/Tutorial/ 目录用于存放机器人的开发实验教程,主要是基于ROS.</li>
<li>docs/Tutorial/Advanced 下的教程独立性比较高,且一般是由各路大神补充的教程,所以图片和md文件放在同目录</li>
<li>docs/Courses 目录用于存放机器人教育的相关学习教程.</li>
<li>docs/Courses/Advanced 下的教程独立性比较高,且一般是由各路大神补充的教程,所以图片和md文件放在同目录</li>
</ul>
<h2 id="如何贡献文档"><a name="如何贡献文档" class="anchor-navigation-ex-anchor" href="#如何贡献文档"><i class="fa fa-link" aria-hidden="true"></i></a>1.2. 如何贡献文档</h2>
<ol>
<li>在Github上fork 作者的HandsFree Wiki源文件: <a href="https://github.com/mawenke/handsfree_wiki" target="_blank">https://github.com/mawenke/handsfree_wiki</a></li>
<li>在自己的本地仓库上编辑更改文档后用Github 的Pull Requests功能提交自己的更新给作者的仓库</li>
</ol>
<h2 id="语法和排版规范"><a name="语法和排版规范" class="anchor-navigation-ex-anchor" href="#语法和排版规范"><i class="fa fa-link" aria-hidden="true"></i></a>1.3. 语法和排版规范</h2>
<ol>
<li>使用GitHub支持的Markdown语言,可参考HandsFree的 <a href="https://github.com/mawenke/SummerCamp2018/tree/master/tool/markdown" target="_blank">markdown 教程</a> 。</li>
<li>一个小节从大标题开始,到三标题会自动生成悬浮目录,标题不能是链接或者图片</li>
<li>标题不需要标注1,2,3...等序号,序号由插件自动生成</li>
<li>正文前不需要空格</li>
<li>图片和本地文件的引用,请用相对链接</li>
<li>图片全部用.jpg格式,vedio使用.mp4格式,GIF需要压缩竟可能小于3M</li>
</ol>
<p>本开源书籍遵循 <a href="https://github.com/mzlogin/chinese-copywriting-guidelines" target="_blank">中文排版指南</a> 规范。</p>
<h2 id="排版模板"><a name="排版模板" class="anchor-navigation-ex-anchor" href="#排版模板"><i class="fa fa-link" aria-hidden="true"></i></a>1.4. 排版模板</h2>
<pre class="language-"><code># 如何贡献项目  
//本小节大标题,从大标题开始到三标题会自动生成悬浮目录,标题不能是链接或者图片
//标题不需要标注1,2,3...等序号,序号由插件自动生成
//正文前不需要空格