This repository was archived by the owner on Jul 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnavigate.py
120 lines (100 loc) · 2.43 KB
/
navigate.py
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
#!/usr/bin/env python3
"""
Navigation process of the drone.
"""
###########
# Imports #
###########
from uav.controllers import AirSimDrone, AirSimDroneNoisy, TelloEDU
from uav.environment import Environment
from uav.navigation import (
NaiveAlgorithm,
VanishingAlgorithm,
VisionAlgorithm,
MarkerAlgorithm,
DepthAlgorithm,
VisionDepthAlgorithm,
VisionMarkerAlgorithm
)
########
# Main #
########
def main(
env_pth: str = 'environment.txt',
controller_id: str = 'airsim',
algorithm_id: str = 'naive',
env_show: bool = False
):
# Environment
env = Environment(env_pth)
# Controller
controllers = {
'airsim': AirSimDrone,
'noisy': AirSimDroneNoisy,
'telloedu': TelloEDU
}
controller = controllers.get(controller_id)()
# Algorithm
algorithms = {
'naive': NaiveAlgorithm,
'vanishing': VanishingAlgorithm,
'vision': VisionAlgorithm,
'marker': MarkerAlgorithm,
'depth': DepthAlgorithm,
'visiondepth': VisionDepthAlgorithm,
'visionmarker': VisionMarkerAlgorithm
}
algorithm = algorithms.get(algorithm_id)
algorithm = algorithm(env, controller, env_show)
# Navigation
algorithm.navigate()
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser(
description='Navigation process of the drone.'
)
parser.add_argument(
'-e',
'--environment',
type=str,
default='environment.txt',
help='path to environment file'
)
parser.add_argument(
'-c',
'--controller',
type=str,
default='airsim',
choices=['airsim', 'noisy', 'telloedu'],
help='choice of the controller to use'
)
parser.add_argument(
'-a',
'--algorithm',
type=str,
default='naive',
choices=[
'naive',
'vanishing',
'vision',
'marker',
'depth',
'visiondepth',
'visionmarker'
],
help='navigation algorithm to use'
)
parser.add_argument(
'-s',
'--show',
action='store_true',
default=False,
help='show the environment representation'
)
args = parser.parse_args()
main(
env_pth=args.environment,
controller_id=args.controller,
algorithm_id=args.algorithm,
env_show=args.show,
)