Skip to content

Commit 9300a57

Browse files
natashadsouzaycool
authored andcommitted
technical tutorial
1 parent 8df293b commit 9300a57

File tree

2 files changed

+71
-0
lines changed

2 files changed

+71
-0
lines changed

docs/quickstart/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- [Apollo 3.0 quick start](apollo_3_0_quick_start.md)
66
- [Apollo 3.0 hardware system installation guide](apollo_3_0_hardware_system_installation_guide.md)
7+
- [Apollo 3.0 technical guide](apollo_3.0_technical_tutorial.md) - Everything you need to know about Apollo 3.0
78

89
## Apollo 2.5
910

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Apollo 3.0 Technical Tutorial
2+
3+
## Overview
4+
> Learn Apollo basic concepts and Apollo 3.0 quick start
5+
6+
* [Apollo 3.0 quick start](https://github.com/ApolloAuto/apollo/blob/master/docs/quickstart/apollo_3_0_quick_start.md)
7+
8+
## Hardware system installation
9+
> Learn the procedure of Apollo 3.0 hardware system installation
10+
11+
* [Apollo 3.0 Hardware System Installation guide](https://github.com/ApolloAuto/apollo/blob/master/docs/quickstart/apollo_3_0_hardware_system_installation_guide.md)
12+
13+
## Calibration
14+
> Learn the process of the calibration service
15+
16+
* [Calibration guide between LiDAR and INS](https://github.com/ApolloAuto/apollo/blob/master/docs/quickstart/apollo_1_5_lidar_calibration_guide.md)
17+
* [Guide for Camera-to-Camera calibration, Camera-to-LiDAR calibration, Radar-to-Camera calibration, IMU-to-Vehicle calibration](https://github.com/ApolloAuto/apollo/blob/master/docs/quickstart/apollo_2_0_sensor_calibration_guide.md)
18+
* [Multiple-LiDAR GNSS calibration guide](https://github.com/ApolloAuto/apollo/blob/master/docs/quickstart/multiple_lidar_gnss_calibration_guide.md)
19+
* [Apollo Coordinate System](https://github.com/ApolloAuto/apollo/blob/master/docs/specs/coordination.pdf)
20+
21+
22+
## Software installation
23+
> Learn the procedure of Apollo 3.0 software system installation
24+
25+
* [Apollo software installation guide](https://github.com/ApolloAuto/apollo/blob/master/docs/quickstart/apollo_software_installation_guide.md)
26+
* [How to Debug a Dreamview Start Problem](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_debug_dreamview_start_problem.md)
27+
* [Run offline demo](https://github.com/ApolloAuto/apollo/blob/master/docs/demo_guide/README.md)
28+
29+
30+
## Software architecture and principles
31+
> Learn Apollo software architecture and principles of core modules
32+
33+
* [Apollo software architecture](https://github.com/ApolloAuto/apollo/blob/master/docs/specs/Apollo_3.0_Software_Architecture.md "Apollo software architecture")
34+
* [3D Obstacle Perception](https://github.com/ApolloAuto/apollo/blob/master/docs/specs/3d_obstacle_perception.md)
35+
* [Apollo 3.0 Perception](https://github.com/ApolloAuto/apollo/blob/master/modules/perception/README.md)
36+
* [QP-Spline-Path Optimizer](https://github.com/ApolloAuto/apollo/blob/master/docs/specs/qp_spline_path_optimizer.md)
37+
* [QP-Spline-ST-Speed Optimizer](https://github.com/ApolloAuto/apollo/blob/master/docs/specs/qp_spline_st_speed_optimizer.md)
38+
* [Reference Line Smoother](https://github.com/ApolloAuto/apollo/blob/master/docs/specs/reference_line_smoother.md)
39+
* [Traffic Light Perception](https://github.com/ApolloAuto/apollo/blob/master/docs/specs/traffic_light.md)
40+
41+
42+
## Software modules and extension
43+
> Learn Apollo software modules and extension
44+
45+
* [Canbus module](https://github.com/ApolloAuto/apollo/blob/master/modules/canbus/README.md)
46+
* [Common module](https://github.com/ApolloAuto/apollo/blob/master/modules/common/README.md)
47+
* [Control module](https://github.com/ApolloAuto/apollo/blob/master/modules/control/README.md)
48+
* [Data module](https://github.com/ApolloAuto/apollo/blob/master/modules/data/README.md)
49+
* [Localization module](https://github.com/ApolloAuto/apollo/blob/master/modules/localization/README.md)
50+
* [Perception module](https://github.com/ApolloAuto/apollo/blob/master/modules/perception/README.md)
51+
* [Planning module](https://github.com/ApolloAuto/apollo/blob/master/modules/planning/README.md)
52+
* [Prediction module](https://github.com/ApolloAuto/apollo/blob/master/modules/prediction/README.md)
53+
* [Routing module](https://github.com/ApolloAuto/apollo/blob/master/modules/routing/README.md)
54+
55+
* [How to Add a New GPS Receiver](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_add_a_gps_receiver.md)
56+
* [How to Add a New CAN Card](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_add_a_new_can_card.md )
57+
* [How to Add a New Control Algorithm](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_add_a_new_control_algorithm.md)
58+
* [How to Add a New Evaluator in Prediction Module](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_add_a_new_evaluator_in_prediction_module.md)
59+
* [How to Add a New Predictor in Prediction Module](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_add_a_new_predictor_in_prediction_module.md)
60+
* [How to Add a New Vehicle](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_add_a_new_vehicle.md)
61+
* [How to Add a New External Dependency](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_add_an_external_dependency.md)
62+
63+
64+
## Developer-Friendliness
65+
> Learn Apollo developer tools
66+
67+
* [How to build and debug Apollo in VSCode](https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_build_and_debug_apollo_in_vscode_cn.md "How to build and debug Apollo in VSCode")
68+
* [Introduction of Dreamview](https://github.com/ApolloAuto/apollo/blob/master/docs/specs/dreamview_usage_table.md)
69+
70+

0 commit comments

Comments
 (0)