示例#1
0
def test_minification():
    n = snowy.generate_noise(1000, 1000, frequency=5, seed=42)
    n = 0.5 + 0.5 * np.sign(n)
    a = snowy.resize(n, 100, 100)
    b = snowy.resize(n, 100, 100, snowy.MITCHELL)
    c = snowy.resize(n, 100, 100, snowy.GAUSSIAN)
    d = snowy.resize(n, 100, 100, snowy.NEAREST)
    x = [a, b, c, d] + [create_circle(100, 100)]
    snowy.show(np.hstack(x))
示例#2
0
def test_tweet():
    import snowy as sn, numpy as np
    im = sn.generate_noise(2000, 500, 5, seed=2, wrapx=True)
    df = sn.generate_sdf(im < 0.0, wrapx=True)
    im = 0.5 + 0.5 * np.sign(im) - im
    cl = lambda L, U: np.where(np.logical_and(df > L, df < U), -im, 0)
    im += cl(20, 30) + cl(60, 70) + cl(100, 110)

    sn.show(sn.resize(im, height=100, wrapx=True))
    sn.show(sn.resize(np.hstack([im, im]), height=200, wrapx=True))
示例#3
0
def create_wrap_figures():
    ground = snowy.load(qualify('ground.jpg'))
    hground = np.hstack([ground, ground])
    ground2x2 = np.vstack([hground, hground])
    snowy.export(ground2x2, qualify('ground2x2.jpg'))

    ground = snowy.blur(ground, radius=14, filter=snowy.LANCZOS)
    snowy.export(ground, qualify('blurry_ground_bad.jpg'))
    hground = np.hstack([ground, ground])
    ground2x2 = np.vstack([hground, hground])
    snowy.export(ground2x2, qualify('blurry_ground2x2_bad.jpg'))

    ground = snowy.load(qualify('ground.jpg'))

    ground = snowy.blur(ground,
                        radius=14,
                        wrapx=True,
                        wrapy=True,
                        filter=snowy.LANCZOS)
    snowy.export(ground, qualify('blurry_ground_good.jpg'))
    hground = np.hstack([ground, ground])
    ground2x2 = np.vstack([hground, hground])
    snowy.export(ground2x2, qualify('blurry_ground2x2_good.jpg'))

    n = snowy.generate_noise(256, 512, frequency=4, seed=42, wrapx=False)
    n = 0.5 + 0.5 * np.sign(n) - n
    n = np.hstack([n, n])
    n = snowy.add_border(n, width=4)
    snowy.export(n, qualify('tiled_noise_bad.png'))

    n = snowy.generate_noise(256, 512, frequency=4, seed=42, wrapx=True)
    n = 0.5 + 0.5 * np.sign(n) - n
    n = np.hstack([n, n])
    n = snowy.add_border(n, width=4)
    snowy.export(n, qualify('tiled_noise_good.png'))

    c0 = create_circle(400, 200, 0.3)
    c1 = create_circle(400, 200, 0.08, 0.8, 0.8)
    circles = np.clip(c0 + c1, 0, 1)
    mask = circles != 0.0
    sdf = snowy.unitize(snowy.generate_sdf(mask, wrapx=True, wrapy=True))
    sdf = np.hstack([sdf, sdf, sdf, sdf])
    sdf = snowy.resize(np.vstack([sdf, sdf]), width=512)
    sdf = snowy.add_border(sdf)
    snowy.export(sdf, qualify('tiled_sdf_good.png'))

    sdf = snowy.unitize(snowy.generate_sdf(mask, wrapx=False, wrapy=False))
    sdf = np.hstack([sdf, sdf, sdf, sdf])
    sdf = snowy.resize(np.vstack([sdf, sdf]), width=512)
    sdf = snowy.add_border(sdf)
    snowy.export(sdf, qualify('tiled_sdf_bad.png'))
示例#4
0
def test_normals():
    isle = create_island(10)
    height, width, nchan = isle.shape

    occlusion = np.empty([height, width, 1])
    seconds = timeit.timeit(
        lambda: np.copyto(occlusion, sn.compute_skylight(isle)), number=1)
    print(f'\ncompute_skylight took {seconds} seconds')

    normals = np.empty([height - 1, width - 1, 3])
    seconds = timeit.timeit(
        lambda: np.copyto(normals, sn.compute_normals(isle)), number=1)
    print(f'\ncompute_normals took {seconds} seconds')

    normals = sn.resize(normals, 750, 512)

    # Flatten the normals according to landmass versus sea.
    normals += np.float64([0, 0, 100]) * np.where(isle < 0.0, 1.0, 0.005)
    normals /= sn.reshape(np.sqrt(np.sum(normals * normals, 2)))

    # Compute the lambertian diffuse factor
    lightdir = np.float64([0.2, -0.2, 1])
    lightdir /= np.linalg.norm(lightdir)
    df = np.clip(np.sum(normals * lightdir, 2), 0, 1)
    df = sn.reshape(df)
    df *= occlusion

    # Apply color LUT
    gradient_image = sn.resize(sn.load(path('terrain.png')),
                               width=1024)[:, :, :3]

    def applyColorGradient(elevation):
        xvals = np.arange(1024)
        yvals = gradient_image[0]
        apply_lut = interpolate.interp1d(xvals, yvals, axis=0)
        el = np.clip(1023 * elevation, 0, 1023)
        return apply_lut(sn.unshape(el))

    albedo = applyColorGradient(isle * 0.5 + 0.5)
    albedo *= df

    # Visualize the lighting layers
    normals = 0.5 * (normals + 1.0)
    isle = np.dstack([isle, isle, isle])
    occlusion = np.dstack([occlusion, occlusion, occlusion])
    df = np.dstack([df, df, df])
    island_strip = sn.resize(sn.hstack([occlusion, normals, df, albedo]),
                             height=256)
    sn.save(island_strip, 'docs/island_strip.png')
    sn.show(island_strip)
示例#5
0
def draw_quad():
    verts = np.array([[-0.67608007,  0.38439575,  3.70544936,  0., 0. ],
        [-0.10726266,  0.38439575,  2.57742041,  1., 0. ],
        [-0.10726266, -0.96069041,  2.57742041,  1., 1. ],
        [-0.67608007, -0.96069041,  3.70544936,  0., 1. ]])
    texture = snowy.load(qualify('../tests/texture.png'))
    target = np.full((1080, 1920, 4), (0.54, 0.54, 0.78, 1.00),
            dtype=np.float32)
    snowy.draw_polygon(target, texture, verts)
    target = snowy.resize(target[400:770, 700:1000], height = 256)
    texture = snowy.resize(texture, height = 256)
    quad = snowy.hstack([texture, target])
    snowy.export(quad, qualify('quad.png'))
    snowy.show(quad)
示例#6
0
def test_cpcf():

    w, h = 500, 500

    def show(im):
        snowy.show(snowy.resize(im, height=100, filter=None))

    yellow = np.full((w, h, 3), (1, 1, 0))
    red = np.full((w, h, 3), (1, 0, 0))

    blue_border = np.full((w, h, 3), (0, 0, 1))
    t = 5
    blue_border[t:h - t, t:w - t] *= 0

    c0 = create_circle(w, h, 0.3) * yellow * 100000
    c1 = create_circle(w, h, 0.07, 0.8, 0.8) * red * 10000
    circles = np.clip(c0 + c1 + blue_border, 0, 1)

    r, g, b = circles.swapaxes(0, 2)
    luma = snowy.reshape(r + g + b)

    mask = luma != 0.0
    sdf = snowy.unitize(np.abs(snowy.generate_sdf(mask)))
    cpcf = snowy.generate_cpcf(mask)

    voronoi = np.empty(circles.shape)
    np.copyto(voronoi, snowy.dereference_coords(circles, cpcf))

    luma = np.dstack([luma, luma, luma])
    sdf = np.dstack([sdf, sdf, sdf])
    final = np.hstack([circles, luma, sdf, voronoi])
    final = snowy.resize(final, height=400)
    show(final)
示例#7
0
def test_tileable():
    n = snowy.generate_noise(200, 400, frequency=4, seed=42, wrapx=True)
    n = 0.5 + 0.5 * np.sign(n) - n
    n = np.hstack([n, n])
    gold = snowy.resize(n, 200, 200)

    n = snowy.generate_noise(20, 40, frequency=4, seed=42, wrapx=True)
    n = 0.5 + 0.5 * np.sign(n) - n
    n = snowy.resize(n, 100, 200)
    bad = np.hstack([n, n])

    n = snowy.generate_noise(20, 40, frequency=4, seed=42, wrapx=True)
    n = 0.5 + 0.5 * np.sign(n) - n
    n = snowy.resize(n, 100, 200, wrapx=True)
    good = np.hstack([n, n])

    snowy.show(snowy.hstack([gold, bad, good], 2, .7))
示例#8
0
def test_gamma():

    source = path('gamma_dalai_lama_gray.jpg')
    dalai_lama = snowy.load(source)
    snowy.show(dalai_lama)

    small = snowy.resize(dalai_lama, height=32)
    snowy.save(small, path('small_dalai_lama.png'))
    snowy.show(small)
示例#9
0
def createColorGradient(pal):
    inds = pal[0::2]
    cols = np.array(pal[1::2])
    red, grn, blu = cols >> 16, cols >> 8, cols
    cols = [c & 0xff for c in [red, grn, blu]]
    cols = [interpolate.interp1d(inds, c) for c in cols]
    img = np.arange(0, 255)
    img = np.dstack([fn(img) for fn in cols])
    return snowy.resize(img, 256, 32)
示例#10
0
def test_coords():

    h, w = 800, 800
    height, width = h, w

    # Draw seed image

    cyan = np.full([h, w, 3], np.float64([(27, 56, 80)]) / 200)
    pink = np.full([h, w, 3], np.float64([175, 111, 127]) / 255)
    orange = np.full([h, w, 3], np.float64([239, 159, 95]) / 255)
    yellow = np.full([h, w, 3], np.float64([239, 207, 95]) / 255)

    colors = np.zeros([h, w, 3])

    def max_color(v):
        return np.maximum(colors, v)

    def sub_color(v):
        return colors * (1 - v)

    colors = max_color(create_circle(w, h, 0.37, [0.4, 0.5]) * cyan)
    colors = max_color(create_circle(w, h, 0.37, [0.6, 0.4]) * cyan)
    colors = max_color(create_circle(w, h, 0.27, [0.7, 0.6]) * cyan)
    colors = sub_color(create_circle(w, h, 0.35, [0.4, 0.5]))
    colors = sub_color(create_circle(w, h, 0.35, [0.6, 0.4]))
    colors = sub_color(create_circle(w, h, 0.25, [0.7, 0.6]))
    colors = max_color(create_circle(w, h, 0.01, [0.4, 0.5]) * orange)
    colors = max_color(create_circle(w, h, 0.01, [0.6, 0.4]) * pink)
    colors = max_color(create_circle(w, h, 0.01, [0.7, 0.6]) * yellow)

    colors = sn.linearize(colors)

    # Create generalized voronoi

    luma = sn.reshape(np.sum(colors, 2))
    coords = sn.generate_cpcf(luma != 0)
    voronoi = sn.dereference_cpcf(colors, coords)

    # Warp the voronoi

    warpx, warpy = width / 15, height / 15
    noise = sn.generate_fBm(width, height, 4, 4, 3)

    i, j = np.arange(width, dtype='i2'), np.arange(height, dtype='i2')
    coords = np.dstack(np.meshgrid(i, j, sparse=False))

    warpx = warpx * np.cos(noise * math.pi * 2)
    warpy = warpy * np.sin(noise * math.pi * 2)
    coords += np.int16(np.dstack([warpx, warpy]))

    coords[:, :, 0] = np.clip(coords[:, :, 0], 0, width - 1)
    coords[:, :, 1] = np.clip(coords[:, :, 1], 0, height - 1)
    warped = sn.dereference_cpcf(voronoi, coords)

    strip = [sn.resize(i, height=256) for i in (colors, voronoi, warped)]
    sn.show(sn.hstack(strip))
示例#11
0
def test_tileable_distance():
    c0 = create_circle(400, 200, 0.3)
    c1 = create_circle(400, 200, 0.08, 0.8, 0.8)
    circles = np.clip(c0 + c1, 0, 1)
    mask = circles != 0.0

    sdf = snowy.unitize(snowy.generate_sdf(mask, wrapx=True, wrapy=True))
    nx, ny = snowy.gradient(sdf)
    grad = snowy.unitize(nx + ny)
    stack2 = np.hstack([sdf, sdf, grad, grad])

    snowy.show(snowy.resize(np.vstack([stack2, stack2]), 600, 200))

    get_mask = lambda L, U: np.logical_and(sdf > L, sdf < U)
    get_contour = lambda L, U: np.where(get_mask(L, U), sdf, 0)
    sdf -= get_contour(.20, .25)
    sdf -= get_contour(.60, .65)
    sdf -= get_contour(.90, .95)

    snowy.show(snowy.resize(np.hstack([sdf, sdf, sdf, sdf]), height=300))
示例#12
0
def test_luminance():
    source = sn.load('tests/sobel_input.png')[:, :, :3]

    L = rgb2gray(source)
    skresult = np.dstack([L, L, L])
    small_skresult = sn.resize(skresult, width=256)

    L = sn.rgb_to_luminance(source)
    snresult = np.dstack([L, L, L])
    small_snresult = sn.resize(snresult, width=256)

    L = skimage_sobel(source)
    sksobel = np.dstack([L, L, L])
    small_sksobel = sn.resize(sksobel, width=256)

    L = sn.rgb_to_luminance(source)
    L = sn.compute_sobel(L)
    snsobel = np.dstack([L, L, L])
    small_snsobel = sn.resize(snsobel, width=256)

    sn.show(
        np.hstack(
            [small_skresult, small_snresult, small_sksobel, small_snsobel]))
示例#13
0
def test_thick():
    source = sn.load('tests/sobel_input.png')[:, :, :3]
    small_source = sn.resize(source, width=256)
    blurred = sn.blur(source, radius=2)
    small_blurred = sn.resize(blurred, width=256)

    L = skimage_sobel(blurred)
    sksobel = np.dstack([L, L, L])
    small_sksobel = sn.resize(sksobel, width=256)

    L = sn.rgb_to_luminance(blurred)
    L = sn.compute_sobel(L)
    snsobel = np.dstack([L, L, L])
    small_snsobel = sn.resize(snsobel, width=256)

    small_sksobel = np.clip(1 - small_sksobel * 40, 0, 1)
    small_snsobel = np.clip(1 - small_snsobel * 40, 0, 1)

    strip = np.hstack([
        small_blurred, small_source * small_sksobel,
        small_source * small_snsobel
    ])
    sn.show(strip)
示例#14
0
def test_magnification():
    i = create_circle(8, 8)
    a = snowy.resize(i, 100, 100, snowy.NEAREST)
    b = snowy.resize(i, 100, 100, snowy.TRIANGLE)
    c = snowy.resize(i, 100, 100, snowy.GAUSSIAN)
    e = snowy.resize(i, 100, 100, snowy.MITCHELL)
    d = snowy.resize(i, 100, 100, snowy.LANCZOS)
    f = snowy.resize(i, 100, 100)
    snowy.show(np.hstack([a, b, c, d, e, f]))
示例#15
0
def test_draw_quad2():

    target = np.full((1080, 1920, 4), (0, 0, 0, 0), dtype=np.float32)
    texture = snowy.load('tests/texture.png')

    # These are in NDC so they span -W to +W
    vertices = np.array([[-0.67608007, 0.38439575, 1.7601049, 3.70544936],
                         [-0.10726266, 0.38439575, 0.60928749, 2.57742041],
                         [-0.10726266, -0.96069041, 0.60928749, 2.57742041],
                         [-0.67608007, -0.96069041, 1.7601049, 3.70544936]])

    texcoords = np.array([[0., 0.], [1., 0.], [1., 1.], [0., 1.]])

    x, y, w = vertices[:, 0], vertices[:, 1], vertices[:, 3]
    u, v = texcoords[:, 0], texcoords[:, 1]

    vertices = np.transpose(np.vstack([x, y, w, u, v]))
    print(vertices)
    snowy.draw_polygon(target, texture, vertices)

    overlay = snowy.load('tests/overlay.png')
    im = snowy.compose(target, overlay)[400:770, 600:900]
    target = snowy.resize(im, height=100)
    snowy.show(target)
示例#16
0
friction = 0.1
clumpy(f'pendulum_phase {dim} {friction} 1 5 field.npy')
clumpy(f'bridson_points {dim} {spacing} 0 pts.npy')
clumpy('advect_points pts.npy field.npy ' +
       f'{step_size} {kernel_size} {decay} {nframes} anim1.npy')

friction = 0.9
clumpy(f'pendulum_phase {dim} {friction} 1 5 field.npy')
clumpy(f'bridson_points {dim} {spacing} 0 pts.npy')
clumpy('advect_points pts.npy field.npy ' +
       f'{step_size} {kernel_size} {decay} {nframes} anim2.npy')

import imageio
writer = imageio.get_writer('anim.mp4', fps=60)
for i in tqdm(range(0, nframes, skip)):

    im1 = snowy.reshape(np.load("{:03}anim1.npy".format(i)))
    im1 = snowy.resize(im1, 960 - 6, 1088 - 8)

    im2 = snowy.reshape(np.load("{:03}anim2.npy".format(i)))
    im2 = snowy.resize(im2, 960 - 6, 1088 - 8)

    im = np.uint8(255.0 - snowy.hstack([im1, im2], border_width=4))
    writer.append_data(im)

writer.close()
print('Generated anim.mp4')

system('rm *.npy')
示例#17
0
文件: example6.py 项目: zooid/clumpy
def clumpy(cmd):
    print(f"clumpy {cmd}")
    result = system(f".release/clumpy {cmd}")
    if result: raise Exception("clumpy failed")


friction = 0.9
spacing = 20
step_size = 2.5
kernel_size = 5
decay = 0.99
nframes = 400
res = 4000, 2000
scalex = 2
scaley = 5

dim = "x".join(map(str, res))

clumpy(f"pendulum_phase {dim} {friction} {scalex} {scaley} field.npy")
clumpy(f"bridson_points {dim} {spacing} 0 pts.npy")
clumpy(
    f"advect_points pts.npy field.npy {step_size} {kernel_size} {decay} {nframes} phase.npy"
)

im = snowy.reshape(1.0 - np.load("000phase.npy") / 255.0)
im = snowy.resize(im, 500, 250)
snowy.export(im, "extras/example6.png")
snowy.show(im)
system("rm *.npy")
print("Generated extras/example6.png")
示例#18
0
        for heading in headings:
            content = heading.contents[0].strip()
            id = content.replace(' ', '_').lower()
            heading["id"] = id
            anchor = soup.new_tag('a', href='#' + id)
            anchor.string = content
            heading.contents[0].replace_with(anchor)
    open(resultfile, 'w').write(str(soup))

generate_page(qualify('index.md'), qualify('index.html'), False)
generate_page(qualify('reference.md'), qualify('reference.html'), True)

# Test rotations and flips

gibbons = snowy.load(qualify('gibbons.jpg'))
gibbons = snowy.resize(gibbons, width=gibbons.shape[1] // 5)
gibbons90 = snowy.rotate(gibbons, 90)
gibbons180 = snowy.rotate(gibbons, 180)
gibbons270 = snowy.rotate(gibbons, 270)
hflipped = snowy.hflip(gibbons)
vflipped = snowy.vflip(gibbons)
snowy.export(snowy.hstack([gibbons, gibbons180, vflipped],
    border_width=4, border_value=[0.5,0,0]), qualify("xforms.png"))

# Test noise generation

n = snowy.generate_noise(100, 100, frequency=4, seed=42, wrapx=True)
n = np.hstack([n, n])
n = 0.5 + 0.5 * n
snowy.show(n)
snowy.export(n, qualify('noise.png'))
示例#19
0
noise = snowy.generate_noise
noise = [noise(width, height, 6 * 2**f, int(f)) * 1 / 2**f for f in range(4)]
noise = reduce(lambda x, y: x + y, noise)
elevation = falloff * (falloff / 2 + noise)
elevation = snowy.generate_udf(elevation < 0.1)
elevation /= np.amax(elevation)
snowy.show(elevation)

# 3. Compute ambient occlusion.

occlusion = snowy.compute_skylight(elevation)
snowy.show(occlusion)

# 4. Generate normal map.

normals = snowy.resize(snowy.compute_normals(elevation), width, height)
snowy.show(0.5 + 0.5 * normals)

# 5. Apply harsh diffuse lighting.

lightdir = np.float64([0.2, -0.2, 1])
lightdir /= np.linalg.norm(lightdir)
lambert = np.sum(normals * lightdir, 2)
snowy.show(snowy.reshape(lambert) * occlusion)

# 6. Lighten the occlusion, flatten the normals, and re-light.

occlusion = 0.5 + 0.5 * occlusion
normals += np.float64([0, 0, 0.5])
normals /= snowy.reshape(np.sqrt(np.sum(normals * normals, 2)))
lambert = np.sum(normals * lightdir, 2)
示例#20
0
 def show(im):
     snowy.show(snowy.resize(im, height=100, filter=None))
示例#21
0
文件: snowy.py 项目: Aurametrix/Alg
import snowy

source = snowy.open('poodle.png')
source = snowy.resize(source, height=200)
blurry = snowy.blur(source, radius=4.0)
snowy.save(snowy.hstack([source, blurry]), 'diptych.png')

# This snippet does a resize, then a blur, then horizontally concatenates the two images

parrot = snowy.load('parrot.png')
height, width = parrot.shape[:2]
nearest = snowy.resize(parrot, width * 6, filter=snowy.NEAREST) 
mitchell = snowy.resize(parrot, width * 6)
snowy.show(snowy.hstack([nearest, mitchell]))

#  This snippet first magnifies an image using a nearest-neighbor filter, then using the default Mitchell filter.

parrot = snowy.load('parrot.png')
height, width = parrot.shape[:2]
nearest = snowy.resize(parrot, width * 6, filter=snowy.NEAREST) 
mitchell = snowy.resize(parrot, width * 6)
snowy.show(snowy.hstack([nearest, mitchell]))
示例#22
0
def minify_with_snowy():
    global imgarray
    global pilimage
    print(imgarray.shape, imgarray.dtype)
    height, width = imgarray.shape[:2]
    imgarray = snowy.resize(imgarray, width // ZOOM, height // ZOOM)
示例#23
0
def trim(img):
    img = snowy.resize(img, width=4000)
    img = img[:, 300:3500, :]
    img = snowy.resize(img, width=3200, height=1335)
    return img
示例#24
0
import snowy
import os
import re

HEIGHT = 2250
WIDTH = 3000


def func(arg):
    pattern = r'(.*\.jpg)$'
    return re.match(pattern, string=arg)


print(func('123.jpg'))
path = os.path.abspath(u'D:/周日敬拜/2017-9-24')
files = os.listdir(path)
imagefile_paths = [os.path.join(path, file).lower() for file in files]
print(imagefile_paths)
for file in imagefile_paths:
    source = snowy.load(file)
    height, width = source.shape[:2]
    if (height != HEIGHT or width != WIDTH):
        new_imagine = snowy.resize(source, width=WIDTH, height=HEIGHT)
        snowy.export(new_imagine, file)
# source = snowy.load(imagefile_paths[0])
# height, width = source.shape[:2]
# newImagine = snowy.resize(source, width=100, height=100)
# snowy.export(newImagine, os.path.join(path, '8.jpg'))
# print(height, width)