You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
580 B
15 lines
580 B
"""
|
|
Image processing and medias constants
|
|
|
|
FOLDERS : Folders in which processed images are stored
|
|
OUTPUT_FOLDER : Where generated images are saved
|
|
BLENDING : Blending methods
|
|
EFFECTS : List of effect to possibly use during generation
|
|
SPECIAL : Custom process to give a special look to the generated image
|
|
"""
|
|
FOLDERS = ['/home/foo/Images/archi',
|
|
'/home/foo/images/botanica']
|
|
OUTPUT_FOLDER = '/home/foo/images/autogenerated/'
|
|
BLENDING = ['multiply', 'screen', 'subtract']
|
|
EFFECTS = ['filter', 'enhance', 'mirror', 'color', 'detail']
|
|
SPECIAL = ['deform', 'lsd', 'akira']
|
|
|