Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update filter.py #19

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 35 additions & 26 deletions filter.py
Original file line number Diff line number Diff line change
@@ -1,28 +1,37 @@
from PIL import Image
import numpy as np
img = Image.open("img2.jpg")
arr = np.array(img)
a = len(arr)
a1 = len(arr[1])
i = 0
while i < a - 11:
j = 0
while j < a1 - 11:
s = 0
for n in range(i, i + 10):
for n1 in range(j, j + 10):
n1 = arr[n][n1][0]
n2 = arr[n][n1][1]
n3 = arr[n][n1][2]
M = n1 + n2 + n3
s += M
s = int(s // 100)
for n in range(i, i + 10):
for n1 in range(j, j + 10):
arr[n][n1][0] = int(s // 50) * 50
arr[n][n1][1] = int(s // 50) * 50
arr[n][n1][2] = int(s // 50) * 50
j = j + 10
i = i + 10
res = Image.fromarray(arr)
res.save('res.jpg')


class GrayscaleFilter:
def __init__(self, p_size, g_step):
self.pixel_size = p_size
self.grayscale = g_step
self.img_arr = None

def get_average_brightness(self, start_x, start_y):
average = np.sum((self.img_arr[start_y: start_y + self.pixel_size, start_x: start_x + self.pixel_size])) / 3
return int(average // (self.pixel_size * self.pixel_size))

def set_gradation(self, start_x, start_y):
average = self.get_average_brightness(start_x, start_y)
gradation = int(average // self.grayscale) * self.grayscale
self.img_arr[start_y: start_y + self.pixel_size, start_x: start_x + self.pixel_size] = gradation

def img_convert(self, input_file_name, output_file_name):
self.img_arr = np.array(Image.open(input_file_name))
height = len(self.img_arr)
width = len(self.img_arr[1])
for y in range(0, height, self.pixel_size):
for x in range(0, width, self.pixel_size):
self.set_gradation(x, y)
res = Image.fromarray(self.img_arr)
res.save(output_file_name)


input_file_name = input("Введите имя исходного изображения: ")
output_file_name = input("Введите имя нового изображения: ")
pixel_size = int(input("Введите размер пикселей: "))
grayscale_step = int(input("Введите шаг градации серого: "))

grayscale_filter = GrayscaleFilter(pixel_size, grayscale_step)
grayscale_filter.img_convert(input_file_name, output_file_name)