imgGrey.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. #!/usr/bin/env python3
  2. from PIL import Image
  3. import sys, os, json, argparse
  4. class imgGrey():
  5. """
  6. Uses Grey scaling to tell what is black and white or grey in an image
  7. """
  8. def __init__(self, on='X', off=' ', intensity=64):
  9. """
  10. Here is where you set stuff like ON, OFF and INTENSITY
  11. """
  12. self.ON = on
  13. self.OFF = off
  14. self.INTENSITY = intensity
  15. def img_point(self, pix, x, y):
  16. """
  17. img_point, returns a pixel of an image,
  18. given the x and y on the image.
  19. """
  20. return pix[x, y]
  21. def img_avg(self, pix, x, y):
  22. """
  23. img_avg, returns the average brightness 0-255,
  24. given pixel, and the x and y on the image calls img_point,
  25. to get the individual rgb values to calculate,
  26. brightness. (Grey scale)
  27. """
  28. rgb = self.img_point(pix, x,y)
  29. #if(im.mode == 'P'):
  30. # rgb = pal[rgb*3:(rgb+1)*3]
  31. #if(im.mode == 'I'):
  32. # return rgb >> 8
  33. return int( ( rgb[0] + rgb[1] + rgb[2] ) / 3 )
  34. def is_set(self, pix, x, y):
  35. """
  36. is_set, returns True or False of calculating,
  37. the brightness of the given point on a image,
  38. compared to given intensity.
  39. True means the brightness at the given x and y,
  40. is Less Than which means its dark.
  41. False means the brightness at the given x and y,
  42. is Greater Than which means its bright. (Grey Scale)
  43. """
  44. avg = self.img_avg(pix, x,y)
  45. return (avg < self.INTENSITY)
  46. def scan_img(self, pix, size):
  47. """
  48. scan_img, looks at a image and looks for dark pixels,
  49. if it is a dark pixel record the number and resize the,
  50. returned values to show where the most dark pixels on the,
  51. image are located. (Grey Scale)
  52. given pixel, and image size.
  53. returns start x, y and end x, y and total number of dark pixels.
  54. """
  55. total = 0
  56. sx = size[0]; ex = 0
  57. sy = size[1]; ey = 0
  58. for y in range( 0,size[1] ):
  59. for x in range( 0,size[0] ):
  60. pnt_is = self.is_set(pix, x,y)
  61. if (pnt_is):
  62. total += 1
  63. if x < sx:
  64. sx = x
  65. if x > ex:
  66. ex = x
  67. if y < sy:
  68. sy = y
  69. if y > ey:
  70. ey = y
  71. #print (sx,ex,sy,ey)
  72. # give us a little border to work with
  73. if sx > 0:
  74. sx -= 1
  75. if ex < size[0]:
  76. ex += 1
  77. if sy > 0:
  78. sy -= 1
  79. if ey < size[1]:
  80. ey += 1
  81. #print (sx,ex,sy,ey)
  82. return(sx,sy,ex,ey,total)
  83. def output_image(self, pix, size):
  84. """
  85. For the size of the area we have reduced down to where the majority of dark pixels,
  86. are located, store all that into a list and return the list.
  87. given pixel for function passing.
  88. returns multiple strings in a list that are edited to use characters to represent,
  89. the dark and light pixels of the image. (Grey Scale)
  90. """
  91. result = []
  92. ex = size[0]; sx = 0
  93. ey = size[1]; sy = 0
  94. for y in range(sy,ey):
  95. s = ''
  96. for x in range(sx,ex):
  97. if self.is_set(pix, x,y):
  98. s += self.ON
  99. else:
  100. s += self.OFF
  101. result.append(s)
  102. return result
  103. def run(self, fname):
  104. """
  105. run, represents a single execution of components to the image,
  106. those components do the following...
  107. We open and load the image, and get it's size,
  108. then we scan_img for dark and light pixels, <-- This narrows the image down to just the majority of dark pixels
  109. then from that we output the image line by line onto the screen after it has been output_image d into list form,
  110. Where we ask the user what the word is, and after that we save all that to a file in the data directory.
  111. """
  112. if not os.path.exists(fname):
  113. raise FileNotFoundError("Could not find '{0}'".format(fname))
  114. print(f"Loading: {fname}")
  115. im = Image.open(fname)
  116. pix = im.load()
  117. size = im.size
  118. pal = im.getpalette()
  119. print(f"Size: {size[0]} x {size[1]}")
  120. sx = 0; ex = size[0]
  121. sy = 0; ey = size[1]
  122. total = 0
  123. sx, sy, ex, ey, total = self.scan_img(pix, size)
  124. print(f"Chars within ({sx}, {sy}) - ({ex}, {ey}) total {total} pixels")
  125. img_s = self.output_image(pix, size)
  126. for l in img_s:
  127. print(l)
  128. word = input('Word: ')
  129. return word
  130. if __name__ == '__main__':
  131. imgTest = imgGrey()
  132. imgTest.run('test.png')