This repository has been archived on 2022-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
mmp-osp1/docs/project-demo/demo-material/config-files/default.yml
Oscar Pocock b8e260affa
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/test Pipeline failed
Added demo config files
2022-05-18 14:59:31 +01:00

34 lines
No EOL
766 B
YAML

---
# Configuration file for the autophographer tool
# List of filters to apply in order
# Note: Possible filters include: brightness, filesize, contrast, focus
filters:
- brightness
- filesize
- contrast
- focus
# Whether or not to apply CNN ranking
CNNrank: False
# Ignore video files and don't bother processing them into frames
# Note: Useful if directory contains original video and indivual frames from video (prevents processing the same frames more than once)
ignore_video: True
# Options for brightness filter
brightness_options:
threshold: 0.25
# Options for filesize filter
filesize_options:
threshold: 0.35
# Options for contrast filter
contrast_options:
threshold: 0.35
# Options for focus filter
focus_options:
threshold: 0.5
...