flandre/src/config.py

19 lines
414 B
Python
Raw Normal View History

2025-01-13 14:21:01 +08:00
from pathlib import Path
SOCKET1 = '127.0.0.1:5003'
VIDEO_HEIGHT = 1920
VIDEO_WIDTH = 1080
BASE = Path(__file__).parent.parent
DS = BASE / '@DS'
DOC = BASE / 'doc'
DS.mkdir(exist_ok=True, parents=True)
DOC.mkdir(exist_ok=True, parents=True)
CONFIG_FOLDER = BASE / 'config'
LAST_CONFIG = BASE / 'config' / 'last_imaging_config.json'
CONFIG_FOLDER.mkdir(exist_ok=True)
if __name__ == '__main__':
print(BASE)