-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
30 lines (30 loc) · 1.12 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
{
// 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",
"python": "~/.conda/envs/flir/bin/python",
"configurations": [
{
"name": "acquire basler arduino",
"type": "debugpy",
"request": "launch",
"program": "./acquire_multi_cam.py",
"console": "integratedTerminal",
"args": [
"--config", "config/config-basler_hw_trigger_multi_cam.yaml",
"--acquisition_mode", "frames",
"--n_total_frames", "1680",
"--trigger_with_arduino", "0",
"--save", "1",
"--videowrite_fps", "30",
"--preview", "1", // disable @threaded for get_n_frames method in basler.py when it is set
"--predict", "1",
"--preview_prediction", "1",
"--model_path", "",
"--stimulation_path", ""
],
"justMyCode": true,
}
]
}