Add v2cmodules/common.py
This commit is contained in:
parent
4411f2684b
commit
91c4938968
26
v2cmodules/common.py
Normal file
26
v2cmodules/common.py
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import configparser
|
||||||
|
|
||||||
|
CONFIG_FILE = "config.ini"
|
||||||
|
INVALID_INI = False
|
||||||
|
STARTING = True
|
||||||
|
V2CV = [1, 2, 0]
|
||||||
|
V2CVERSION = f"{V2CV[0]}.{V2CV[1]}.{V2CV[2]}"
|
||||||
|
RSS_FEED_URL = "https://git.rolfsvaag.no/frarol96/Video2Crops/releases.rss"
|
||||||
|
WIKI_URL = "https://git.rolfsvaag.no/frarol96/Video2Crops/wiki"
|
||||||
|
|
||||||
|
processing = False
|
||||||
|
|
||||||
|
# Setup config file
|
||||||
|
config = configparser.ConfigParser()
|
||||||
|
config.read(CONFIG_FILE)
|
||||||
|
|
||||||
|
processing_button_state = "start"
|
||||||
|
# Load ini settings
|
||||||
|
frame_step = int(config.get('settings', 'frame_step'))
|
||||||
|
contrast_threshold = float(config.get('settings', 'contrast_threshold'))
|
||||||
|
duplicate_threshold = float(config.get('settings', 'duplicate_threshold'))
|
||||||
|
SAVE = config.get('settings', 'save_output')
|
||||||
|
SHOW = config.get('settings', 'show_playback')
|
||||||
|
roi_size = int(config.get('settings', 'roi_size'))
|
||||||
|
tksize = config.get('settings', 'window_size')
|
||||||
|
DEBUG = config.get('debug', 'debug_output')
|
Loading…
Reference in New Issue
Block a user