-
Notifications
You must be signed in to change notification settings - Fork 2
/
launch.json
82 lines (81 loc) · 3.5 KB
/
launch.json
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
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Server - Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\manage.py",
"args": [
"runserver"
],
"django": true,
"justMyCode": true
},
{
"name": "Client - ParkingLot Live",
"type": "python",
"request": "launch",
"program": "PerfectParkingClient/main.py",
"args": ["--data", "PerfectParkingClient/data/coordinates-live.yml", "--video", "http://172.21.0.111:4747/video", "--start-frame", "400"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Client - ParkingLot Recording",
"type": "python",
"request": "launch",
"program": "PerfectParkingClient/main.py",
"args": ["--data", "PerfectParkingClient/data/coordinates_1.yml", "--video", "PerfectParkingClient/videos/parking_lot_1.mp4", "--start-frame", "400"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Client - Model Car Park Recording",
"type": "python",
"request": "launch",
"program": "PerfectParkingClient/main.py",
"args": ["--data", "PerfectParkingClient/data/coordinates-live-sample.yml", "--video", "PerfectParkingClient/videos/live-sample-3.mp4", "--start-frame", "400"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Client - Config Live",
"type": "python",
"request": "launch",
"program": "PerfectParkingClient/main.py",
"args": ["--image", "PerfectParkingClient/images/camera-live-feed.png", "--data", "PerfectParkingClient/data/coordinates-live.yml", "--video", "http://172.21.0.111:4747/video", "--start-frame", "400"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Client - Config Recording",
"type": "python",
"request": "launch",
"program": "PerfectParkingClient/main.py",
"args": ["--image", "PerfectParkingClient/images/parking_lot_1.png", "--data", "PerfectParkingClient/data/coordinates_1.yml", "--video", "PerfectParkingClient/videos/parking_lot_1.mp4", "--start-frame", "400"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Client - Config Model Car Park Recording",
"type": "python",
"request": "launch",
"program": "PerfectParkingClient/main.py",
"args": ["--image", "PerfectParkingClient/images/live-sample-3.png", "--data", "PerfectParkingClient/data/coordinates-live-sample.yml", "--video", "PerfectParkingClient/videos/live-sample-3.mp4", "--start-frame", "400"],
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Mock Client - ParkingLot",
"type": "python",
"request": "launch",
"program": "PerfectParkingClient/mock.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}