加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
configs.py 601 Bytes
一键复制 编辑 原始数据 按行查看 历史
yatengLG 提交于 2023-04-20 00:00 . update
import yaml
from enum import Enum
DEFAULT_CONFIG_FILE = 'default.yaml'
CONFIG_FILE = 'isat.yaml'
def load_config(file):
with open(file, 'rb')as f:
cfg = yaml.load(f.read(), Loader=yaml.FullLoader)
return cfg
def save_config(cfg, file):
s = yaml.dump(cfg)
with open(file, 'w') as f:
f.write(s)
return True
class STATUSMode(Enum):
VIEW = 0
CREATE = 1
EDIT = 2
class DRAWMode(Enum):
POLYGON = 0
SEGMENTANYTHING = 1
class CLICKMode(Enum):
POSITIVE = 0
NEGATIVE = 1
class MAPMode(Enum):
LABEL = 0
SEMANTIC = 1
INSTANCE = 2
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化