Remove clutter

This commit is contained in:
Andras Schmelczer 2024-06-16 20:51:14 +01:00
parent c2f2b183aa
commit 7b4397f66c
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C

View file

@ -3,9 +3,8 @@ from PIL import Image
def add_noise(img: Image, alpha: float) -> Image:
img = img.convert("RGB")
width, height = img.size
random_colors = np.random.randint(0, 256, (height, width, 3), dtype=np.uint8)
random_img = Image.fromarray(random_colors, mode="RGB")
random_img = Image.fromarray(random_colors)
result = Image.blend(img, random_img, alpha)
return result