We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af92097 commit 5718c2bCopy full SHA for 5718c2b
digital_image_processing/dithering/burkes.py
@@ -39,7 +39,7 @@ def __init__(self, input_img, threshold: int):
39
def get_greyscale(cls, blue: int, green: int, red: int) -> float:
40
"""
41
>>> Burkes.get_greyscale(3, 4, 5)
42
- 3.753
+ 4.185
43
44
return 0.114 * blue + 0.587 * green + 0.299 * red
45
0 commit comments