generated from pollen-robotics/python-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathteleopWrapper_example.py
72 lines (60 loc) · 1.73 KB
/
teleopWrapper_example.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
import argparse
import logging
import subprocess as sp
from typing import Dict, List
from pollen_vision.camera_wrappers.depthai.teleop import TeleopWrapper
from pollen_vision.camera_wrappers.depthai.utils import (
get_config_file_path,
get_config_files_names,
)
valid_configs = get_config_files_names()
argParser = argparse.ArgumentParser(description="teleop wrapper example")
argParser.add_argument(
"--config",
type=str,
required=True,
choices=valid_configs,
help=f"Configutation file name : {valid_configs}",
)
args = argParser.parse_args()
logging.basicConfig(level=logging.DEBUG)
w = TeleopWrapper(get_config_file_path(args.config), 60, rectify=True)
def spawn_procs(names: List[str]) -> Dict[str, sp.Popen]: # type: ignore [type-arg]
width, height = 960, 720
command = [
"ffplay",
"-i",
"-",
"-x",
str(width),
"-y",
str(height),
"-framerate",
"60",
"-fflags",
"nobuffer",
"-flags",
"low_delay",
"-framedrop",
"-strict",
"experimental",
]
procs = {}
try:
for name in names:
procs[name] = sp.Popen(command, stdin=sp.PIPE) # Start the ffplay process
except Exception:
exit("Error: cannot run ffplay!\nTry running: sudo apt install ffmpeg")
return procs
procs = spawn_procs(["left", "right"])
while True:
data, lat, _ = w.get_data_h264()
logging.info(lat)
for name, packets in data.items():
# if name == "left_raw" or name == "right_raw":
# continue
io = procs[name].stdin
if io is not None:
io.write(packets)
else:
logging.error(f"io error with {procs[name]}")