simple-autonomous-car 0.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- simple_autonomous_car/__init__.py +96 -0
- simple_autonomous_car/alerts/__init__.py +5 -0
- simple_autonomous_car/alerts/track_bounds_alert.py +276 -0
- simple_autonomous_car/car/__init__.py +5 -0
- simple_autonomous_car/car/car.py +234 -0
- simple_autonomous_car/constants.py +112 -0
- simple_autonomous_car/control/__init__.py +7 -0
- simple_autonomous_car/control/base_controller.py +152 -0
- simple_autonomous_car/control/controller_viz.py +282 -0
- simple_autonomous_car/control/pid_controller.py +153 -0
- simple_autonomous_car/control/pure_pursuit_controller.py +578 -0
- simple_autonomous_car/costmap/__init__.py +12 -0
- simple_autonomous_car/costmap/base_costmap.py +187 -0
- simple_autonomous_car/costmap/grid_costmap.py +507 -0
- simple_autonomous_car/costmap/inflation.py +126 -0
- simple_autonomous_car/detection/__init__.py +5 -0
- simple_autonomous_car/detection/error_detector.py +165 -0
- simple_autonomous_car/filters/__init__.py +7 -0
- simple_autonomous_car/filters/base_filter.py +119 -0
- simple_autonomous_car/filters/kalman_filter.py +131 -0
- simple_autonomous_car/filters/particle_filter.py +162 -0
- simple_autonomous_car/footprint/__init__.py +7 -0
- simple_autonomous_car/footprint/base_footprint.py +128 -0
- simple_autonomous_car/footprint/circular_footprint.py +73 -0
- simple_autonomous_car/footprint/rectangular_footprint.py +123 -0
- simple_autonomous_car/frames/__init__.py +21 -0
- simple_autonomous_car/frames/frenet.py +267 -0
- simple_autonomous_car/maps/__init__.py +9 -0
- simple_autonomous_car/maps/frenet_map.py +97 -0
- simple_autonomous_car/maps/grid_ground_truth_map.py +83 -0
- simple_autonomous_car/maps/grid_map.py +361 -0
- simple_autonomous_car/maps/ground_truth_map.py +64 -0
- simple_autonomous_car/maps/perceived_map.py +169 -0
- simple_autonomous_car/perception/__init__.py +5 -0
- simple_autonomous_car/perception/perception.py +107 -0
- simple_autonomous_car/planning/__init__.py +7 -0
- simple_autonomous_car/planning/base_planner.py +184 -0
- simple_autonomous_car/planning/goal_planner.py +261 -0
- simple_autonomous_car/planning/track_planner.py +199 -0
- simple_autonomous_car/sensors/__init__.py +6 -0
- simple_autonomous_car/sensors/base_sensor.py +105 -0
- simple_autonomous_car/sensors/lidar_sensor.py +145 -0
- simple_autonomous_car/track/__init__.py +5 -0
- simple_autonomous_car/track/track.py +463 -0
- simple_autonomous_car/visualization/__init__.py +25 -0
- simple_autonomous_car/visualization/alert_viz.py +316 -0
- simple_autonomous_car/visualization/utils.py +169 -0
- simple_autonomous_car-0.1.2.dist-info/METADATA +324 -0
- simple_autonomous_car-0.1.2.dist-info/RECORD +50 -0
- simple_autonomous_car-0.1.2.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: simple_autonomous_car
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Comprehensive SDK for building autonomous vehicle systems with modular sensors, controllers, planners, and alert systems
|
|
5
|
+
Author: Simple Autonomous Car Contributors
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: alert-systems,autonomous-vehicles,control,frenet-frame,localization,perception,planning,sensor-fusion,sensors
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Requires-Dist: matplotlib>=3.7.0
|
|
20
|
+
Requires-Dist: numpy>=1.24.0
|
|
21
|
+
Requires-Dist: scipy>=1.10.0
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: black>=23.0.0; extra == 'dev'
|
|
24
|
+
Requires-Dist: ipykernel>=6.0.0; extra == 'dev'
|
|
25
|
+
Requires-Dist: jupyter>=1.0.0; extra == 'dev'
|
|
26
|
+
Requires-Dist: mypy>=1.5.0; extra == 'dev'
|
|
27
|
+
Requires-Dist: pre-commit>=3.4.0; extra == 'dev'
|
|
28
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
|
|
29
|
+
Requires-Dist: pytest>=7.4.0; extra == 'dev'
|
|
30
|
+
Requires-Dist: ruff>=0.1.0; extra == 'dev'
|
|
31
|
+
Provides-Extra: docs
|
|
32
|
+
Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == 'docs'
|
|
33
|
+
Requires-Dist: sphinx>=7.0.0; extra == 'docs'
|
|
34
|
+
Description-Content-Type: text/markdown
|
|
35
|
+
|
|
36
|
+
# Simple Autonomous Car SDK
|
|
37
|
+
|
|
38
|
+
[](https://github.com/guilyx/simple_autonomous_car/actions/workflows/ci.yml)
|
|
39
|
+
[](https://badge.fury.io/py/simple_autonomous_car)
|
|
40
|
+
[](https://codecov.io/gh/guilyx/simple_autonomous_car)
|
|
41
|
+
[](https://opensource.org/licenses/MIT)
|
|
42
|
+
[](https://pypi.org/project/simple_autonomous_car/)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
A comprehensive Python SDK for building autonomous vehicle systems with modular sensors, controllers, planners, and alert systems. Designed for researchers, engineers, and developers working on autonomous vehicle systems.
|
|
46
|
+
|
|
47
|
+
## Features
|
|
48
|
+
|
|
49
|
+
- 🚗 **Modular Car System**: Add multiple sensors, controllers, and planners
|
|
50
|
+
- 🎯 **Multiple Coordinate Frames**: Global, Ego, Sensor, and Frenet frame support
|
|
51
|
+
- 👁️ **Modular Sensors**: LiDAR and extensible sensor system (add Camera, Radar, etc.)
|
|
52
|
+
- 🎮 **Control Systems**: Built-in Pure Pursuit and PID controllers, extensible architecture
|
|
53
|
+
- 🗺️ **Planning Systems**: Track planner and extensible planning framework
|
|
54
|
+
- 🚨 **Alert Systems**: Track bounds alert system with extensible architecture
|
|
55
|
+
- 🔄 **Frame Conversions**: Comprehensive utilities for coordinate transformations
|
|
56
|
+
- 📊 **Visualization**: Rich visualization tools for debugging and analysis
|
|
57
|
+
- 🧪 **Well Tested**: Comprehensive test suite with CI/CD
|
|
58
|
+
|
|
59
|
+
## Installation
|
|
60
|
+
|
|
61
|
+
### From PyPI
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pip install simple_autonomous_car
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### From Source
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
git clone https://github.com/yourusername/simple_autonomous_car.git
|
|
71
|
+
cd simple_autonomous_car
|
|
72
|
+
pip install -e .
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### With uv (Recommended)
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
uv pip install simple_autonomous_car
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## Quick Start
|
|
82
|
+
|
|
83
|
+
```python
|
|
84
|
+
from simple_autonomous_car import (
|
|
85
|
+
Track,
|
|
86
|
+
Car,
|
|
87
|
+
CarState,
|
|
88
|
+
LiDARSensor,
|
|
89
|
+
PurePursuitController,
|
|
90
|
+
TrackPlanner,
|
|
91
|
+
FrenetMap,
|
|
92
|
+
TrackBoundsAlert,
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
# Create track and car
|
|
96
|
+
track = Track.create_simple_track()
|
|
97
|
+
car = Car(initial_state=CarState(x=0.0, y=0.0, heading=0.0, velocity=8.0))
|
|
98
|
+
|
|
99
|
+
# Add sensors to car
|
|
100
|
+
ground_truth_map = GroundTruthMap(track)
|
|
101
|
+
perceived_map = PerceivedMap(ground_truth_map)
|
|
102
|
+
lidar = LiDARSensor(ground_truth_map, perceived_map, max_range=40.0)
|
|
103
|
+
car.add_sensor(lidar)
|
|
104
|
+
|
|
105
|
+
# Create planner and controller
|
|
106
|
+
planner = TrackPlanner(track)
|
|
107
|
+
controller = PurePursuitController(target_velocity=10.0)
|
|
108
|
+
|
|
109
|
+
# Control loop
|
|
110
|
+
for step in range(100):
|
|
111
|
+
plan = planner.plan(car.state)
|
|
112
|
+
perception_data = car.sense_all()
|
|
113
|
+
control = controller.compute_control(car.state, perception_data, plan)
|
|
114
|
+
car.update(dt=0.1, **control)
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
## Architecture
|
|
118
|
+
|
|
119
|
+
### Modular Design
|
|
120
|
+
|
|
121
|
+
```
|
|
122
|
+
Car
|
|
123
|
+
├── Sensors (LiDAR, Camera, Radar, etc.)
|
|
124
|
+
├── Controller (Pure Pursuit, PID, MPC, etc.)
|
|
125
|
+
└── Planner (Track Planner, A*, RRT, etc.)
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Data Flow
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
Planner → Plan → Controller → Control Commands → Car
|
|
132
|
+
↑
|
|
133
|
+
Sensors → Perception Data
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
## Documentation
|
|
137
|
+
|
|
138
|
+
Comprehensive documentation is available in the [`docs/`](docs/) directory:
|
|
139
|
+
|
|
140
|
+
- **[Getting Started](docs/getting-started/installation.md)** - Installation and setup
|
|
141
|
+
- **[Quick Start](docs/getting-started/quickstart.md)** - Get up and running quickly
|
|
142
|
+
- **[Building Controllers](notebooks/building_controller.ipynb)** - Interactive controller tutorial
|
|
143
|
+
- **[Building Alert Systems](docs/guides/building-alert-systems.md)** - Guide for building alert systems
|
|
144
|
+
- **[Track Bounds Alert](docs/guides/track-bounds-alert.md)** - Detailed alert system documentation
|
|
145
|
+
- **[Frame Conversions](docs/guides/frame-conversions.md)** - Understanding coordinate systems
|
|
146
|
+
- **[API Reference](docs/api/overview.md)** - Complete API documentation
|
|
147
|
+
|
|
148
|
+
See the [Documentation Index](docs/index.md) for a complete overview.
|
|
149
|
+
|
|
150
|
+
## Key Concepts
|
|
151
|
+
|
|
152
|
+
### Modular Components
|
|
153
|
+
|
|
154
|
+
- **Car**: Vehicle with dynamics, can have multiple sensors
|
|
155
|
+
- **Sensors**: Modular sensor system (LiDAR, Camera, Radar, etc.)
|
|
156
|
+
- **Controllers**: Control algorithms (Pure Pursuit, PID, MPC, etc.)
|
|
157
|
+
- **Planners**: Path planning algorithms (Track Planner, A*, RRT, etc.)
|
|
158
|
+
|
|
159
|
+
### Coordinate Frames
|
|
160
|
+
|
|
161
|
+
- **Global Frame**: World coordinates (track reference)
|
|
162
|
+
- **Ego Frame**: Car-centered (x=forward, y=left)
|
|
163
|
+
- **Sensor Frame**: Sensor-centered coordinates
|
|
164
|
+
- **Frenet Frame**: Path-aligned (s=distance along path, d=lateral offset)
|
|
165
|
+
|
|
166
|
+
## Tutorials and Examples
|
|
167
|
+
|
|
168
|
+
### Jupyter Notebooks
|
|
169
|
+
|
|
170
|
+
Interactive tutorials are available in the `notebooks/` directory:
|
|
171
|
+
|
|
172
|
+
- **[Building Controllers](notebooks/building_controller.ipynb)** - Learn how to build controllers
|
|
173
|
+
- **[Costmap Tutorial](notebooks/costmap_tutorial.ipynb)** - Learn about costmaps and obstacle representation
|
|
174
|
+
- **[Planner Tutorial](notebooks/planner_tutorial.ipynb)** - Learn how to build and use planners
|
|
175
|
+
- **[Track Bounds Alert](notebooks/track_bounds_alert.ipynb)** - Learn how to build alert systems
|
|
176
|
+
|
|
177
|
+
### Code Examples
|
|
178
|
+
|
|
179
|
+
- **[Unified Simulation Runner](src/simulations/simulation.py)** - Config-based simulation runner with enhanced visualization
|
|
180
|
+
- Run with: `python -m simulations.simulation simple_track` or `python -m simulations.simulation race_track`
|
|
181
|
+
- Supports custom configs via `--config` flag
|
|
182
|
+
|
|
183
|
+
## Notebooks
|
|
184
|
+
|
|
185
|
+
The SDK includes comprehensive Jupyter notebooks organized by category:
|
|
186
|
+
|
|
187
|
+
### Tutorials (`notebooks/tutorials/`)
|
|
188
|
+
- [Costmap Tutorial](notebooks/tutorials/costmap_tutorial.ipynb) - Learn costmaps
|
|
189
|
+
- [Planner Tutorial](notebooks/tutorials/planner_tutorial.ipynb) - Learn path planning
|
|
190
|
+
- [Track Bounds Alert Tutorial](notebooks/tutorials/track_bounds_alert.ipynb) - Learn alert systems
|
|
191
|
+
|
|
192
|
+
### Building Custom Components (`notebooks/building/`)
|
|
193
|
+
- [Building Simulations](notebooks/building/building_simulation.ipynb) - Build complete simulations
|
|
194
|
+
- [Building Controllers](notebooks/building/building_controller.ipynb) - Build custom controllers
|
|
195
|
+
- [Building Custom Sensors](notebooks/building/building_custom_sensors.ipynb) - Build custom sensors
|
|
196
|
+
- [Building Custom Planners](notebooks/building/building_custom_planners.ipynb) - Build custom planners
|
|
197
|
+
|
|
198
|
+
### Learning Notebooks (`notebooks/learning/`) - Fill-in-the-Blank
|
|
199
|
+
**Incomplete notebooks** where you fill in the code - perfect for hands-on learning:
|
|
200
|
+
- [Learning: Build a Costmap](notebooks/learning/learning_build_costmap.ipynb) - Implement your own costmap
|
|
201
|
+
- [Learning: Build a Planner](notebooks/learning/learning_build_planner.ipynb) - Implement your own planner
|
|
202
|
+
- [Learning: Build a Controller](notebooks/learning/learning_build_controller.ipynb) - Implement your own controller
|
|
203
|
+
- [Learning: Build a Sensor](notebooks/learning/learning_build_sensor.ipynb) - Implement your own sensor
|
|
204
|
+
- [Learning: Advanced Planning](notebooks/learning/advanced_planning_algorithms.ipynb) - Implement A* and RRT
|
|
205
|
+
|
|
206
|
+
## Examples
|
|
207
|
+
|
|
208
|
+
### Adding Multiple Sensors
|
|
209
|
+
|
|
210
|
+
```python
|
|
211
|
+
# Add front LiDAR
|
|
212
|
+
front_lidar = LiDARSensor(..., name="front_lidar", pose_ego=np.array([1.0, 0.0, 0.0]))
|
|
213
|
+
car.add_sensor(front_lidar)
|
|
214
|
+
|
|
215
|
+
# Add rear LiDAR
|
|
216
|
+
rear_lidar = LiDARSensor(..., name="rear_lidar", pose_ego=np.array([-1.0, 0.0, np.pi]))
|
|
217
|
+
car.add_sensor(rear_lidar)
|
|
218
|
+
|
|
219
|
+
# Get data from all sensors
|
|
220
|
+
perception_data = car.sense_all()
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
### Using Controller with Planner
|
|
224
|
+
|
|
225
|
+
```python
|
|
226
|
+
# Create planner and controller
|
|
227
|
+
planner = TrackPlanner(track)
|
|
228
|
+
controller = PurePursuitController(target_velocity=10.0)
|
|
229
|
+
|
|
230
|
+
# Control loop
|
|
231
|
+
plan = planner.plan(car.state)
|
|
232
|
+
control = controller.compute_control(car.state, perception_data, plan)
|
|
233
|
+
car.update(dt=0.1, **control)
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
### Building Custom Components
|
|
237
|
+
|
|
238
|
+
```python
|
|
239
|
+
# Custom sensor
|
|
240
|
+
class MySensor(BaseSensor):
|
|
241
|
+
def sense(self, car_state, environment_data):
|
|
242
|
+
# Your sensor logic
|
|
243
|
+
return PerceptionPoints(points, frame="ego")
|
|
244
|
+
|
|
245
|
+
# Custom controller
|
|
246
|
+
class MyController(BaseController):
|
|
247
|
+
def compute_control(self, car_state, perception_data, plan):
|
|
248
|
+
# Your control logic
|
|
249
|
+
return {"acceleration": 0.0, "steering_rate": 0.0}
|
|
250
|
+
|
|
251
|
+
# Custom planner
|
|
252
|
+
class MyPlanner(BasePlanner):
|
|
253
|
+
def plan(self, car_state, perception_data, goal):
|
|
254
|
+
# Your planning logic
|
|
255
|
+
return waypoints
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
## Development
|
|
259
|
+
|
|
260
|
+
```bash
|
|
261
|
+
# Clone repository
|
|
262
|
+
git clone https://github.com/yourusername/simple_autonomous_car.git
|
|
263
|
+
cd simple_autonomous_car
|
|
264
|
+
|
|
265
|
+
# Install with uv
|
|
266
|
+
uv sync --dev
|
|
267
|
+
|
|
268
|
+
# Run tests
|
|
269
|
+
uv run pytest
|
|
270
|
+
|
|
271
|
+
# Run linting
|
|
272
|
+
uv run black src tests
|
|
273
|
+
uv run ruff check src tests
|
|
274
|
+
uv run mypy src
|
|
275
|
+
|
|
276
|
+
# Install pre-commit hooks
|
|
277
|
+
uv run pre-commit install
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
## Project Structure
|
|
281
|
+
|
|
282
|
+
```
|
|
283
|
+
simple_autonomous_car/
|
|
284
|
+
├── src/simple_autonomous_car/
|
|
285
|
+
│ ├── car/ # Car model with sensor support
|
|
286
|
+
│ ├── sensors/ # Modular sensor system
|
|
287
|
+
│ ├── control/ # Control algorithms
|
|
288
|
+
│ ├── planning/ # Path planning algorithms
|
|
289
|
+
│ ├── alerts/ # Alert systems
|
|
290
|
+
│ ├── maps/ # Map representations
|
|
291
|
+
│ ├── perception/ # Perception data structures
|
|
292
|
+
│ ├── frames/ # Frame conversion utilities
|
|
293
|
+
│ ├── track/ # Track generation
|
|
294
|
+
│ └── visualization/ # Visualization tools
|
|
295
|
+
├── docs/ # Documentation
|
|
296
|
+
├── notebooks/ # Jupyter notebooks
|
|
297
|
+
├── tests/ # Test suite
|
|
298
|
+
└── src/simulations/ # Example simulations
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
## Contributing
|
|
302
|
+
|
|
303
|
+
Contributions are welcome! Please see [Contributing Guidelines](docs/contributing.md) for details.
|
|
304
|
+
|
|
305
|
+
## License
|
|
306
|
+
|
|
307
|
+
MIT License - see [LICENSE](LICENSE) file for details.
|
|
308
|
+
|
|
309
|
+
## Citation
|
|
310
|
+
|
|
311
|
+
If you use this SDK in your research, please cite:
|
|
312
|
+
|
|
313
|
+
```bibtex
|
|
314
|
+
@software{simple_autonomous_car,
|
|
315
|
+
title = {Simple Autonomous Car SDK},
|
|
316
|
+
author = {Your Name},
|
|
317
|
+
year = {2024},
|
|
318
|
+
url = {https://github.com/yourusername/simple_autonomous_car}
|
|
319
|
+
}
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
## Acknowledgments
|
|
323
|
+
|
|
324
|
+
Inspired by the [AutonomousVehicleControlBeginnersGuide](https://github.com/ShisatoYano/AutonomousVehicleControlBeginnersGuide) repository.
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
simple_autonomous_car/__init__.py,sha256=Yu90iYVSFWDkkP87fltE_0GHm8-B9v1DdrJ0TVpfnBY,2508
|
|
2
|
+
simple_autonomous_car/constants.py,sha256=phZ6pkngdyYmq5vfRyjb9Nb1bGPwSIEH4Zs2lPqgcmY,4129
|
|
3
|
+
simple_autonomous_car/alerts/__init__.py,sha256=X3z7l5AXhQPZJxKp2O1A5jYkC2L0cAMgSM4_eWzwLzQ,169
|
|
4
|
+
simple_autonomous_car/alerts/track_bounds_alert.py,sha256=bNXSq5VmzXJvf85aJ-GlzvJW4795QftWCne9NHaO2OI,10197
|
|
5
|
+
simple_autonomous_car/car/__init__.py,sha256=uoYr2v4Dh86jHCiMWC7h8xtGltsioG3b8c4XKdeG-jM,118
|
|
6
|
+
simple_autonomous_car/car/car.py,sha256=P5UqIxY-BlLLV-WRriMjr119hPE5UMbeVWktMHMZppg,7493
|
|
7
|
+
simple_autonomous_car/control/__init__.py,sha256=Zlfwe4993EgvRohFePnoMcEu37iXyzBVp9VDQP6DZSM,351
|
|
8
|
+
simple_autonomous_car/control/base_controller.py,sha256=lCtEcIzXn0A-WY0x_FE1D9EgDsUbt_2IUAjq8x9e3go,4541
|
|
9
|
+
simple_autonomous_car/control/controller_viz.py,sha256=Sjk7YRpEYBSMB6VPoefo4t9Wj8qDqRSrkAm6GsoEqdQ,9240
|
|
10
|
+
simple_autonomous_car/control/pid_controller.py,sha256=Vu2G9-AZ-jrN1pbsQBhddswzDmu2nOnPn3ruhMCvwhk,5957
|
|
11
|
+
simple_autonomous_car/control/pure_pursuit_controller.py,sha256=XS5QOCX_Nov9Myjq1kk27j_oPNWdKN_imVrBJr8T7m8,25446
|
|
12
|
+
simple_autonomous_car/costmap/__init__.py,sha256=e13pHVJ_qi7aGG4gpgc3A6OBxZtNvq2eAEqRoy9G-EI,405
|
|
13
|
+
simple_autonomous_car/costmap/base_costmap.py,sha256=7BckruhEsFG9Rq3Iilv4Lvnm5IBp7-mCTsCm8F-wXEY,5473
|
|
14
|
+
simple_autonomous_car/costmap/grid_costmap.py,sha256=GRak3YctGu_OUasgGp66rrj4nEcyP9buq20MKEF_XKc,18355
|
|
15
|
+
simple_autonomous_car/costmap/inflation.py,sha256=eOB2wEvxOYFBiGkQiV0m6BLIgguseDY-wklyE0dTv2Y,3633
|
|
16
|
+
simple_autonomous_car/detection/__init__.py,sha256=98AkLR87qdID60ykjhm0CJt0SVqv8_tGLL6ikjJ5snE,171
|
|
17
|
+
simple_autonomous_car/detection/error_detector.py,sha256=PmOkAzMZ9Vos7Js_J0uIKZAMkTm8sjJ8Am6RlKVeBKY,6380
|
|
18
|
+
simple_autonomous_car/filters/__init__.py,sha256=JRLYNZg8U-KB0bdEQJiPmtWbjVuDPbaQuM7AwEcZdGk,327
|
|
19
|
+
simple_autonomous_car/filters/base_filter.py,sha256=TeQ6BdvdcExN7yjy2tBXmlr_pVM5gVwkmBuPC4RlUCQ,2996
|
|
20
|
+
simple_autonomous_car/filters/kalman_filter.py,sha256=r6QwhwiZ15-5L_TR19MJwzqkx1rwPHt7FRUiubaktC8,4508
|
|
21
|
+
simple_autonomous_car/filters/particle_filter.py,sha256=2_3ep3JLLvF36eZiF2crTjiNjJxz3iTcVEPC34W5qcI,5700
|
|
22
|
+
simple_autonomous_car/footprint/__init__.py,sha256=kv4vVeY1pS99Ng_4DV_REgBGL3VKhssmzg030RLtqL0,373
|
|
23
|
+
simple_autonomous_car/footprint/base_footprint.py,sha256=bMdhz11hV8xMnjQEB-FW4sYejTpa-TQIiJ_Qmlft5Zc,3376
|
|
24
|
+
simple_autonomous_car/footprint/circular_footprint.py,sha256=R8Em_v1Yl9VSqnkgyoFx0DJkh8KO7JZE9sLlBN939P0,2201
|
|
25
|
+
simple_autonomous_car/footprint/rectangular_footprint.py,sha256=sJMHxnFLYY1gtMVZ05gcK36VPazRRd-LVQbmZGOJKtc,3873
|
|
26
|
+
simple_autonomous_car/frames/__init__.py,sha256=oQgsmg8TL_5raEKZDGROw7asCmSdGNplzs5s8qLq2Kw,421
|
|
27
|
+
simple_autonomous_car/frames/frenet.py,sha256=2mLdfR7hSgDR1jCJhZE0MvUnq4-jnDqGVDe7sbcV608,8597
|
|
28
|
+
simple_autonomous_car/maps/__init__.py,sha256=eYGtQ3VNmrQmlX54VW9n6SXxFiI3SwGeTYP-3urLQJI,485
|
|
29
|
+
simple_autonomous_car/maps/frenet_map.py,sha256=c_AGDlAQDYtO5vysGBP4EKCxG1hTRTxR-TotpIbBKC0,3161
|
|
30
|
+
simple_autonomous_car/maps/grid_ground_truth_map.py,sha256=Li5SBQRRkgVxbHzma1tpOWar9LR2kBTkZDW75N8z4-8,2866
|
|
31
|
+
simple_autonomous_car/maps/grid_map.py,sha256=22cYqrtzWUKm6dsqZ0JIFA2V1SleNHjR4VC2AVC58CQ,12663
|
|
32
|
+
simple_autonomous_car/maps/ground_truth_map.py,sha256=fvSBSdTk_VTexpOYgOW3i_imQ1Cyx63Whl7LOxRMSxw,2301
|
|
33
|
+
simple_autonomous_car/maps/perceived_map.py,sha256=XaIjuMZGN3wKr6PJ2VyYLNm34MKk3McNSXdIH1rTAZI,6282
|
|
34
|
+
simple_autonomous_car/perception/__init__.py,sha256=gNlLJez_dWIzV24jN7FwFZBisyPk7wUtqG4qRHNur-Q,154
|
|
35
|
+
simple_autonomous_car/perception/perception.py,sha256=XAwEF_kdgVLW9EUJxijq4pjw2HwFgJ8BLSsiwgm-0n0,3583
|
|
36
|
+
simple_autonomous_car/planning/__init__.py,sha256=pkrmsvylw0gSRdprbXqnRvmN_BF0CiSyfhR__ZOi7_A,317
|
|
37
|
+
simple_autonomous_car/planning/base_planner.py,sha256=XiWoTsqT-geCI43UcxXKcmkQF2j2j4_nz4s1rE9xDmo,5495
|
|
38
|
+
simple_autonomous_car/planning/goal_planner.py,sha256=NVH_V2x383C0wSx6MHXZT1C33NsMJJpByyc9eDRFAcA,9539
|
|
39
|
+
simple_autonomous_car/planning/track_planner.py,sha256=7mo-bGKoCXNFyCQAtZepLBoo_7HWkOW4MquymI0Ukjs,6480
|
|
40
|
+
simple_autonomous_car/sensors/__init__.py,sha256=FNWit0k6GcZl-p9_NEXv-zW6tMQ9OZPw5K2qGPu0Tzk,219
|
|
41
|
+
simple_autonomous_car/sensors/base_sensor.py,sha256=Hk8LTL3lF51jhLxj4XaNwCgMYPLlBiyFWuzKuuBlXvk,3156
|
|
42
|
+
simple_autonomous_car/sensors/lidar_sensor.py,sha256=gRAhxA25qDgOSMIjFmwdtJEiAYcYUTKbsPO1GANwJ6E,5380
|
|
43
|
+
simple_autonomous_car/track/__init__.py,sha256=4cXclTeilTdbTRBNsfFYhnWCaITdRMXZgExFHUtlyZI,113
|
|
44
|
+
simple_autonomous_car/track/track.py,sha256=wnoSnZo-q7G_dj5z41L2hhgklkFnh4eHVSqWdAiJSBA,16999
|
|
45
|
+
simple_autonomous_car/visualization/__init__.py,sha256=fzGpPqnD2OBFy-05DgR4TQu8er_o7ODR7GG-K_cGlMA,694
|
|
46
|
+
simple_autonomous_car/visualization/alert_viz.py,sha256=A4XTZ_HIU_YqIoWDrLvP_j3-wP02fdp1CrHNowGWX08,10113
|
|
47
|
+
simple_autonomous_car/visualization/utils.py,sha256=BROpAoK7gTA8TeaQWoqPueT5QmKgv0XDgaL2iZX7c94,4404
|
|
48
|
+
simple_autonomous_car-0.1.2.dist-info/METADATA,sha256=62oLmgmjBzkJtPR7Lf9rwkJwTyBgEdQetgdJiA6kqR0,11578
|
|
49
|
+
simple_autonomous_car-0.1.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
50
|
+
simple_autonomous_car-0.1.2.dist-info/RECORD,,
|