-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperlin-italy-map.py
461 lines (383 loc) · 16.3 KB
/
perlin-italy-map.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
# Lorenzo Rossi - wwww.lorenzoros.si
import time
import shutil
import logging
import argparse
import subprocess
from pathlib import Path
from math import pi, sin, cos
from opensimplex import OpenSimplex
from scipy.interpolate import interp1d
from PIL import Image, ImageFont, ImageDraw
# translate variables
def map(value, old_min, old_max, new_min, new_max):
if value < old_min:
value = old_min
elif value > old_max:
value = old_max
old_width = old_max - old_min
new_width = new_max - new_min
value_scaled = float(value - old_min) / float(old_width)
return new_min + (value_scaled * new_width)
def quantize(value, levels, min_value=0, max_value=100):
interval = int((max_value - min_value) / levels)
if interval == 0:
interval = 1
for x in range(int(max_value), int(min_value), -interval):
if x < value:
return x
return min_value
# SPLINE INTERPOLATION
def spline(x, y, length):
new_y = []
new_x = []
k = 5
if k >= len(x):
k = len(x) - 1
if k % 2 == 0:
k -= 1 # only odd numbers
if k <= 1:
return None
for i in range(len(x) * length):
new_x.append((x[-1] - x[0]) / (len(x) * length) * i + x[0])
f = interp1d(x, y, kind=k, fill_value="extrapolate")
new_y = f(new_x)
spline_coords = []
for i in range(len(new_x)):
spline_coords.append((new_x[i], new_y[i]))
return spline_coords
class Map:
def __init__(self, destination_size, fps):
self.saturation = [25, 180] # inside of this
self.hue = [165, 230] # outside of this
# PARAMETERS
# y spacing between lines
self.y_resolution = 40
# max dh of a line (relative to y uyresolution)
self.y_scl = 8
# y quantization in levels
self.y_levels = 16
# x spacing between lines
self.x_resolution = 100
# number of interpolation
self.x_levels = 100
# pixel width of destination image
self.destination_size = destination_size
# noise parameters
self.noise_scl = 0.005
self.noise_radius = map(fps, 0, 120, 0, 5)
# line alpha
self.line_alpha = 5
# watermark font size
self.font_size = 40
# noise initialization
seed = int(time.time())
self.noise = OpenSimplex(seed=seed)
def loadSource(self, path):
self.source_im = Image.open(path)
self.hsv_im = self.source_im.convert("HSV") # HSV - detect italy shape
self.bw_im = self.source_im.convert("L") # Black and White - height
# source image size
image_width = self.source_im.width
image_height = self.source_im.height
# biggest of the two
biggest = max(image_width, image_height)
# scale of the destination image
self.scl = self.destination_size / biggest
# offset of the destination image
self.dx = int((self.destination_size - image_width * self.scl) / 2)
self.dy = int((self.destination_size - image_height * self.scl) / 2)
# calculate line width
self.line_width = int(1 / self.scl)
def loadFont(self, path):
self.font = ImageFont.truetype(font=path, size=self.font_size)
def loadLines(self):
# detect lines from image
self.lines_coords = []
for y in range(0, self.hsv_im.height, self.y_resolution):
started = None
# add some fuzzyness
nx = 0
ny = y * self.noise_scl
n = self.noise.noise2d(x=nx, y=ny)
dx = int(map(n, -1, 1, -self.x_resolution / 2,
self.x_resolution/2))
for x in range(dx, self.hsv_im.width, self.x_resolution):
pixel = self.hsv_im.getpixel((x, y))
# check saturation and hue
hue = int(pixel[0] / 255 * 360) # hue
sat = int(pixel[1] / 255 * 100) # saturation
# have we found land?
land = False
# check if saturation is in boundaries (to find Italy)
if (self.saturation[0] < sat < self.saturation[1]):
# check if hue is outside boundaries (to find land)
if (hue < self.hue[0] or hue > self.hue[1]):
# this is land
land = True
# we found land, start the line
if land and not started:
started = x
# we don't have land anymore, stop line
if not land and started:
# the line has to be longer than 1 step
if x - started > self.x_resolution:
self.lines_coords.append({
"start": {
"x": started,
"y": y
},
"end": {
"x": x,
"y": y
}
})
# anyway, get ready for the next line
started = None
def calculateHeights(self):
# calculate heights
self.height_map = []
for line in self.lines_coords:
y_start = line["start"]["y"]
x_start = line["start"]["x"]
x_end = line["end"]["x"]
for x in range(x_start, x_end, self.x_resolution):
heights = []
for dx in range(self.x_resolution):
for y in range(y_start, y_start + self.y_resolution):
if (x + dx < self.bw_im.width
and y < self.bw_im.height):
heights.append(self.bw_im.getpixel((x + dx, y)))
avg_height = int(sum(heights) / len(heights))
self.height_map.append({
"start": {
"x": x,
"y": y_start
},
"end": {
"x": x + self.x_resolution,
"y": y_start
},
"height": avg_height
})
# get highest and lowest points
sorted_height_map = sorted(self.height_map, key=lambda x: x["height"])
lowest = sorted_height_map[0]["height"] # lowest point on the map
highest = sorted_height_map[-1]["height"] # highest point on the map
# normalize the heights
for height in self.height_map:
# height delta
self.d_height = self.y_scl * self.y_resolution
# normalize height
n_height = map(height["height"], lowest, highest, 0, self.d_height)
# quantize height
q_height = quantize(n_height, self.y_levels, 0, self.d_height)
height["normalized_height"] = q_height
# get color (greyscale)
color = int(map(height["height"], lowest, highest, 0, 255))
height["color"] = (color, color, color)
def generateLines(self, percent):
self.line_coords = []
# noise angle
ntheta = percent * 2 * pi
# noise coordinates
nx = self.noise_radius * (1 + cos(ntheta))
ny = self.noise_radius * (1 + sin(ntheta))
# list of unique y values
unique_y = list(set(h["start"]["y"] for h in self.height_map))
for y in unique_y:
line_x = []
line_y = []
lines_to_draw = [line for line in self.height_map
if line["start"]["y"] == y]
for line in range(len(lines_to_draw)):
# noise coordinates
nz = lines_to_draw[line]["start"]["x"] * self.noise_scl
nw = lines_to_draw[line]["start"]["y"] * self.noise_scl
# noise value
n = self.noise.noise4d(x=nx, y=ny, z=nz, w=nw)
# height offset
ndy = map(n, -1, 1, 0, 2)
dy = lines_to_draw[line]["normalized_height"]
line_x.append(lines_to_draw[line]["start"]["x"] + self.dx)
line_y.append(lines_to_draw[line]["start"]["y"]
- dy * ndy + self.dy)
# this skips gaps (for example, sea)
if line < len(lines_to_draw) - 1:
gap = lines_to_draw[line+1]["start"]["x"] \
- lines_to_draw[line]["end"]["x"]
if gap > self.x_resolution:
spline_coords = spline(line_x, line_y, self.x_levels)
self.line_coords.append(spline_coords)
line_x = []
line_y = []
continue
spline_coords = spline(line_x, line_y, self.x_levels)
self.line_coords.append(spline_coords)
line_x = []
line_y = []
def drawOutput(self):
temp_im = Image.new('RGB', (int(self.source_im.width),
int(self.source_im.height)))
draw = ImageDraw.Draw(temp_im)
# reset image
draw.rectangle([0, 0, temp_im.width, temp_im.height], fill=(0, 0, 0))
for line in self.line_coords:
if not line:
continue
draw.line((line), fill=(255, 255, 255, self.line_alpha),
width=self.line_width)
# hide logo
draw.rectangle([7250, 0, 10700, 950], fill=(0, 0, 0))
new_width = int(self.source_im.width * self.scl)
new_height = int(self.source_im.height * self.scl)
temp_im = temp_im.resize((new_width, new_height), Image.ANTIALIAS)
self.dest_im = Image.new('RGB', (self.destination_size,
self.destination_size))
self.dest_im.paste(temp_im, (self.dx, self.dy))
# add watermark
draw = ImageDraw.Draw(self.dest_im)
text = "Lorenzo Rossi - www.lorenzoros.si"
x = self.font_size * 0.5
y = self.destination_size - self.font_size * 1.5
draw.text((x, y), fill=(127, 127, 127, 32), text=text, stroke_width=0,
font=self.font)
def saveDestImage(self, folder, filename, frame_num):
ext = "png"
number = str(frame_num).zfill(7)
path = f"{folder}/{filename}_{number}.{ext}"
self.dest_im.save(path)
return path
def checkPause(self):
printed = False
started = None
while Path("PAUSE").is_file():
if not printed:
logging.info("File PAUSE detected. "
"Pausing until it's deleted.")
started = time.time()
printed = True
time.sleep(1)
if printed:
lost = time.time() - started
logging.info("Resuming....")
return lost
return 0
def main():
parser = argparse.ArgumentParser(description="Generate a looping animation"
" of Italian mountains")
parser.add_argument("-d", "--duration", type=int,
help="destination video duration (defaults to 15)",
default=15)
parser.add_argument("-f", "--fps", type=int,
help="destination video fps (defaults to 60)",
default=60)
parser.add_argument("-s", "--size", type=int,
help="destination video width and height in pixel "
"(defaults to 1200)",
default=1200)
parser.add_argument("-l", "--log", action="store",
choices=["file", "console"], default="file",
help="log destination (defaults to file)")
parser.add_argument("-o", "--output", action="store",
default="italy",
help="output filename (defaults to italy)")
args = parser.parse_args()
if args.log == "file":
logfile = __file__.replace(".py", ".log")
print(f"Logging into file {logfile}\n\n")
logging.basicConfig(format="%(asctime)s - %(levelname)s - %(message)s",
level=logging.INFO, filename=logfile,
filemode="w+")
else:
logging.basicConfig(format="%(asctime)s - %(levelname)s - %(message)s",
level=logging.INFO)
logging.info("Script started")
logging.info(f"Generating video: {args.fps} fps, {args.duration} seconds, "
f"{args.size} pixels of size")
script_start = time.time()
source_file = "source/Italia_tinitaly.jpg"
font = "source/Roboto-ThinItalic.ttf"
frames_folder = "frames"
video_folder = "output"
destination_file = args.output
total_frames = args.fps * args.duration
m = Map(args.size, args.fps)
logging.info("Creating folders...")
try:
shutil.rmtree(frames_folder)
except Exception as e:
logging.info(f"Folder {frames_folder} does not exist. Error: {e}")
Path(frames_folder).mkdir(parents=True, exist_ok=True)
Path(video_folder).mkdir(parents=True, exist_ok=True)
logging.info("Folders created")
logging.info("Loading images...")
m.loadSource(source_file)
logging.info("Images loaded")
logging.info("Loading font ...")
m.loadFont(font)
logging.info("Font loaded")
logging.info("Loading lines...")
m.loadLines()
logging.info("Lines loaded")
logging.info("Calculating heights...")
m.calculateHeights()
logging.info("Heights calculated")
generating_start = time.time()
time_lost = 0
for x in range(total_frames):
percent = x / total_frames
logging.info(f"Starting generation of image {x+1}/{total_frames}...")
m.generateLines(percent)
m.drawOutput()
path = m.saveDestImage(frames_folder, destination_file, x)
log_text = f"Image {x+1}/{total_frames} saved. Location: {path}"
time_lost += m.checkPause()
if percent > 0:
elapsed = int(time.time() - generating_start - time_lost)
elapsed_min = int(elapsed / 60)
total = elapsed / percent
remaining = int(total - elapsed)
remaining_min = int(remaining / 60)
progress = int(percent * 100)
log_text += (
f"Time elapsed: {elapsed}s (~{elapsed_min}min). "
f"Remaining: {remaining}s (~{remaining_min} min). "
f"Progress: {progress}%"
)
logging.info(log_text)
# generate the output video, webm and gif with timestamp in the name to
# avoid overwriting
try:
timestamp = int(time.time())
options = f"ffmpeg -y -r {args.fps} -i " \
f"{frames_folder}/{destination_file}_%07d.png -loop 0 " \
f"{video_folder}/{destination_file}_{timestamp}.mp4"
subprocess.run(options.split(" "))
options = "ffmpeg -y -i " \
f"{video_folder}/{destination_file}_{timestamp}.mp4 -loop 0" \
" -filter_complex fps=25,split[s0][s1];[s0]palettegen[p];"\
"[s1][p]paletteuse " \
f"{video_folder}/{destination_file}_{timestamp}.gif"
subprocess.run(options.split(" "))
options = "ffmpeg -i " \
f"{video_folder}/{destination_file}_{timestamp}.mp4 -c:v " \
"libvpx-vp9 -crf 15 -b:v 0 -b:a 128k -c:a libopus " \
f"{video_folder}/{destination_file}_{timestamp}.webm"
subprocess.run(options.split(" "))
options = "ffmpeg -i " \
f"{video_folder}/{destination_file}_{timestamp}.mp4 -c:v " \
"libvpx-vp9 -crf 50 -b:v 0 -b:a 128k -c:a libopus " \
f"{video_folder}/{destination_file}_{timestamp}_low_quality" \
".webm"
subprocess.run(options.split(" "))
except Exception as e:
logging.error(f"Cannot make output video using ffmpeg. Error: {e}")
elapsed = int(time.time() - script_start - time_lost)
elapsed_min = int(elapsed / 60)
seconds_per_frame = int(elapsed / total_frames)
logging.info(f"Script completed. It took {elapsed} seconds "
f"(~{elapsed_min} minutes), averaging ~{seconds_per_frame}s"
" per frame")
if __name__ == "__main__":
main()