Fixed wrong split threshold in down images

This commit is contained in:
Javi Carnero 2020-06-12 14:10:49 +02:00 коммит произвёл GitHub
Родитель cfae0149cc
Коммит 7f469a379d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -16,7 +16,7 @@ def fixed_split(videos, thresholds, mask_suffix, overlap=0):
threshold = int(thresholds[i])
iup_region = f"iw:{threshold + overlap}:0:0"
idw_region = f"iw:ih-{threshold + overlap}:0:{threshold - overlap}"
idw_region = f"iw:ih-{threshold}+{overlap}:0:{threshold - overlap}"
# crop color images
code = os.system(