-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_noise_texture.py
125 lines (100 loc) · 4.33 KB
/
test_noise_texture.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
"""
Test function to examine noise textures. Creates an image with a noise map for a region (ll,ur) and
displays summary statistics. Useful to test parameters for NoiseTexture's
Len Wanger, copyright 2020
"""
from pathlib import Path
import numpy as np
from framebuffer import FrameBuffer
from geometry_classes import get_color, Vec3
from texture_classes import NoiseTexture
from perlin import value_noise, fractal_noise, turbulent_noise, marble_pattern, wood_pattern
import colorcet
def calc_array_stats(map, name, show_parms=False):
# print(f'\tCalculating statistics for {name}')
min = np.amin(map, axis=None)
max = np.max(map)
mean = np.mean(map)
stddev = np.std(map)
print(f'stats for {name}: min={min:0.4f}, max={max:0.4f}, mean={mean:0.4f}, stddev={stddev:0.4f}')
if show_parms is True:
print(f'\nUse parms: xlate={(-min):0.4f}, scale={(1/(max-min)):0.4f}')
if __name__ == '__main__':
print('Noise texture testers:')
# fire, jade, dimgray, coolwarm,; cc.kbc,; cc.blues # clouds?, cc.rainbow, cc. # wood? use part of range
use_palette = 'jade2'
palette_parms = {
'fire': (colorcet.fire, 'fire'),
'jade': (colorcet.kgy, 'jade'),
'jade2': (colorcet.CET_D13[135:240], 'jade2'),
'dimgray': (colorcet.dimgray, 'dimgray'),
'wood': (colorcet.CET_CBC1[100:145], 'wood'),
'wood2': (colorcet.CET_CBD1[190:], 'wood2'),
'wood3': (colorcet.CET_D6[155:240], 'wood3'),
}
point_scale = 1.0
palette, name = palette_parms[use_palette]
colormap = [get_color(i,palette) for i in range(len(palette))]
# use_eval: value_noise, value_noise2, fractal_noise, turbulent_noise, marble_pattern, wood_pattern
use_eval = 'marble_pattern'
if use_eval == 'value_noise':
eval_func = value_noise
kwargs = {'frequency': 0.5 }
translate = 0.060
scale = 8.0
elif use_eval == 'value_noise2':
eval_func = value_noise
kwargs = {'frequency': 5.0}
translate = 0.6457 # for freq = 5.0
scale = 0.7682 # for freq = 5.0
elif use_eval == 'fractal_noise':
point_scale = 3.0
eval_func = fractal_noise
kwargs = {'frequency': 0.02, 'frequency_mult': 1.8, 'amplitude_mult': 0.35, 'layers': 5, 'div_val': 1.0 }
translate = -0.233
scale = 1.683
elif use_eval == 'turbulent_noise':
eval_func = turbulent_noise
kwargs = {'frequency': 0.02, 'frequency_mult': 1.8, 'amplitude_mult': 0.35, 'layers': 5, 'div_val': 1.0}
translate = -0.7578
scale = 1.0308
elif use_eval == 'marble_pattern':
point_scale = 4.0 # delete me
eval_func = marble_pattern
# kwargs = {'frequency': 0.02, 'frequency_mult': 1.8, 'amplitude_mult': 0.35, 'layers': 5, 'displace_x': 100}
# kwargs = {'frequency': 0.024, 'frequency_mult': 2.5, 'amplitude_mult': 0.35, 'layers': 7, 'displace_x': 200}
kwargs = {'frequency': 0.024, 'frequency_mult': 2.5, 'amplitude_mult': 0.5, 'layers': 7, 'displace_x': 200}
translate = 0.20
scale = 1.0
else: # use_eval == 'wood_pattern':
eval_func = wood_pattern
kwargs = {'frequency': 0.01, 'frequency_mult': 10,}
translate = 1.0
scale = 0.5
noise = NoiseTexture(colormap, point_scale=point_scale, translate=translate, scale=scale, name=name,
eval_func=eval_func, eval_kwargs=kwargs)
# im_width = im_height = 512
# im_width = im_height = 256
im_width = im_height = 128
# im_width = im_height = 32
fb = FrameBuffer(x_size=im_width, y_size=im_height, depth="rgb")
# generate value noise
print(f'\tCreating noise_map -- translate={translate}, scale={scale}\n')
noise_map = np.zeros((im_width, im_height), dtype=float)
raw_noise_map = np.zeros((im_width, im_height), dtype=float)
# p = Vec3(0,0,0)
p = Vec3(0, 0, 0.1)
for j in range(im_height):
for i in range(im_width):
p.x, p.y = i, j
# p.x, p.y = i+0.1, j+0.1
val = noise.raw_value(0, 0, p)
raw_noise_map[j, i] = val
val = noise.value(0, 0, p)
fb.set_pixel(i, j, (val.r, val.g, val.b))
calc_array_stats(raw_noise_map, 'raw_noise_map', True)
if False:
im = fb.make_image()
im.show()
p = Path('./perlin_test.png')
im.save(p)