mirror of
https://gitlvb.teallvbs.xyz/IQ.Lvbs/IQ.Pilot.git
synced 2026-09-09 23:33:42 +08:00
9 lines
166 B
Python
9 lines
166 B
Python
from enum import IntEnum
|
|
|
|
|
|
class VisionStreamType(IntEnum):
|
|
VISION_STREAM_ROAD = 0
|
|
VISION_STREAM_DRIVER = 1
|
|
VISION_STREAM_WIDE_ROAD = 2
|
|
VISION_STREAM_MAP = 3
|