34 lines
No EOL
766 B
YAML
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
|
|
... |