-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.txt
27 lines (21 loc) · 1.15 KB
/
template.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
####################################################################################################
## Change These ##
####################################################################################################
IMAGE_PATH = "Images/.jpg"
INTERPOLATION_COUNT = 8
VIEW_SCALE = 0.4
SOURCE_COLORS = []
SAVE_IMAGE = False
SAVE_NAME = ""
####################################################################################################
## WARNING: Nerdy Code Stuff ##
####################################################################################################
from Helpers.shader import *
SOURCE_COLORS = prepare_source_colors(SOURCE_COLORS)
if not SAVE_IMAGE:
sample_image = shade_image(IMAGE_PATH, INTERPOLATION_COUNT, SOURCE_COLORS, VIEW_SCALE=VIEW_SCALE)
sample_image.show()
if SAVE_IMAGE:
print(f"Saving to Generated/{SAVE_NAME}.png")
final_image = shade_image(IMAGE_PATH, INTERPOLATION_COUNT, SOURCE_COLORS, VIEW_SCALE=1)
final_image.save(f"Generated/{SAVE_NAME}.png", "PNG")