-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquadratic_transform_powers.py
36 lines (28 loc) · 1 KB
/
quadratic_transform_powers.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
# power(z, 200) + z -1-1j
from mandelpy import create_image, Settings, power
from PIL import ImageFilter
import numpy as np
from cmath import *
from user_utilities import *
import time
images_folder = r"..\images\increasing_powers5"
video_file = r"..\test5.mp4"
def create_images():
i = 0
for n in np.arange(1, 5, 0.02):
i += 1
p = (n - 2) * abs(n - 2) + 2
settings = Settings(transform=lambda z: power(z, p) + 1.5*z - 0.5 - 0.25j,
width=2000, height=2000,
block_size=(1000, 1000),
mirror_x=False)
img = create_image(settings, verbose=True)
img = img.filter(ImageFilter.GaussianBlur(1))
img = img.resize((1920, 1080))
# img.save(rf"{images_folder}\Pic{i}.jpg", optimize=True, quality=90)
if __name__ == '__main__':
start = time.time()
create_images()
make_gif(images_folder, video_file, 30)
end = time.time()
print("Total time taken:", end - start)