change black pixels to a random shade
This commit is contained in:
parent
4a197cc248
commit
853968a447
@ -29,7 +29,8 @@ def capture_screenshot():
|
|||||||
for _ in range(black_pixels_count):
|
for _ in range(black_pixels_count):
|
||||||
x = random.randint(0, width - 1)
|
x = random.randint(0, width - 1)
|
||||||
y = random.randint(0, height - 1)
|
y = random.randint(0, height - 1)
|
||||||
pixels[x, y] = (0, 0, 0)
|
shade = random.randint(0, 255)
|
||||||
|
pixels[x, y] = (shade, shade, shade)
|
||||||
|
|
||||||
# Make 1% of the pixels copy themselves to their 8 neighbors
|
# Make 1% of the pixels copy themselves to their 8 neighbors
|
||||||
for _ in range(neighbor_copy_pixels_count):
|
for _ in range(neighbor_copy_pixels_count):
|
||||||
|
Loading…
Reference in New Issue
Block a user