dataLoad.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. #!/usr/bin/env python3
  2. from PIL import Image
  3. from pprint import pprint
  4. import sys
  5. import time
  6. import os
  7. import requests
  8. import random
  9. import json
  10. import argparse
  11. import subprocess
  12. import imager
  13. parser = argparse.ArgumentParser(description="S0urce.io utility program.")
  14. parser.add_argument("--download", help="Download Images", action="store_true")
  15. parser.add_argument("--train", help="Convert Images to Text", action="store_true")
  16. parser.add_argument("--update", help="Update s0urce.js script", action="store_true")
  17. parser.add_argument(
  18. "JSON", type=str, nargs="?", help="Filename to save results", default="test.js"
  19. )
  20. args = parser.parse_args()
  21. # pprint(args)
  22. # Should we add the JSON in a file? (True is filename, False = do not do)
  23. # JSONME = 'test.js'
  24. JSONME = args.JSON
  25. # NOTE: To begin the insert of the JSONIFIED image and word its
  26. # // T
  27. # A JS comment with a uppercase T
  28. # To stop its
  29. # // t
  30. # A JS comment with a lowercase t
  31. # httpbin.org/headers
  32. sess = requests.Session()
  33. head = {
  34. "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36"
  35. }
  36. sess.headers.update(head)
  37. ON = "X" # Dark pixel in an image
  38. OFF = "." # Light pixel in an image
  39. DIR = (
  40. "data"
  41. ) # Data directory name, do we really need this? Is it really going to change?
  42. INTENSITY = (
  43. 75
  44. ) # How bright does something have to be to trigger it being a dark or light pixel?
  45. # Looks like around 75 removes the extra stuff that s0urce.io does to prevent it from being just matching images.
  46. GREEN_DIFF = 10
  47. # How much brighter the green channel must be (compared to the others),
  48. # to be called green.
  49. # Check the environment, do we have all that we need?
  50. if not os.path.exists("images"):
  51. os.mkdir("images")
  52. if not os.path.exists("data"):
  53. os.mkdir("data")
  54. if not os.path.exists("words.yml"):
  55. with open('words.yml', 'w') as f: # Create a empty yaml file
  56. f.write('')
  57. def download(howhard, index):
  58. global sess
  59. """
  60. Download an image based upon how hard it is.
  61. On success, it saves the image file.
  62. Failure raises ConnectionError.
  63. """
  64. r = sess.get(f"http://s0urce.io/client/img/word/{howhard}/{index}")
  65. if r.status_code == 200:
  66. with open(f"images/{howhard}_{index}.png", "wb") as f:
  67. f.write(r.content)
  68. if os.path.exists(f"images/{howhard}_{index}_clean.png"):
  69. os.remove(f"images/{howhard}_{index}_clean.png")
  70. else:
  71. # We did not get a 200 Okay, log this... Hmm maybe we need to make a log file?
  72. # print( f'{howhard}_{index}.png ' + str(r.status_code) )
  73. raise ConnectionError(
  74. "http://s0urce.io/client/img/word/{0}/{1} returned status_code {2}".format(
  75. howhard, index, r.status_code
  76. )
  77. )
  78. def img_point(pix, x, y):
  79. """
  80. img_point, returns a pixel of an image,
  81. given the x and y on the image.
  82. """
  83. return pix[x, y]
  84. def img_avg(pix, x, y):
  85. """
  86. img_avg, returns the average brightness 0-255,
  87. given pixel, and the x and y on the image calls img_point,
  88. to get the individual rgb values to calculate,
  89. brightness. (Grey scale)
  90. """
  91. rgb = img_point(pix, x, y)
  92. # if(im.mode == 'P'):
  93. # rgb = pal[rgb*3:(rgb+1)*3]
  94. # if(im.mode == 'I'):
  95. # return rgb >> 8
  96. return int((rgb[0] + rgb[1] + rgb[2]) / 3)
  97. def is_set(pix, x, y):
  98. global INTENSITY
  99. """
  100. is_set, returns True or False of calculating,
  101. the brightness of the given point on a image,
  102. compared to given intensity.
  103. True means the brightness at the given x and y,
  104. is Less Than which means its dark.
  105. False means the brightness at the given x and y,
  106. is Greater Than which means its bright. (Grey Scale)
  107. """
  108. avg = img_avg(pix, x, y)
  109. return avg < INTENSITY
  110. def is_green(pix, x, y):
  111. """
  112. Is this pixel Green?
  113. """
  114. (red, green, blue, _) = img_point(pix, x, y)
  115. # Find the difference between green and the other values.
  116. other = red
  117. if blue > other:
  118. other = blue
  119. diff = green - other
  120. return diff > GREEN_DIFF
  121. def scan_img(pix, size):
  122. """
  123. scan_img, looks at a image and looks for dark pixels,
  124. if it is a dark pixel record the number and resize the,
  125. returned values to show where the most dark pixels on the,
  126. image are located. (Grey Scale)
  127. given pixel, and image size.
  128. returns start x, y and end x, y and total number of dark pixels.
  129. """
  130. total = 0
  131. sx = size[0]
  132. ex = 0
  133. sy = size[1]
  134. ey = 0
  135. for y in range(0, size[1]):
  136. for x in range(0, size[0]):
  137. pnt_is = is_set(pix, x, y)
  138. if pnt_is:
  139. total += 1
  140. if x < sx:
  141. sx = x
  142. if x > ex:
  143. ex = x
  144. if y < sy:
  145. sy = y
  146. if y > ey:
  147. ey = y
  148. # print (sx,ex,sy,ey)
  149. # give us a little border to work with
  150. if sx > 0:
  151. sx -= 1
  152. if ex < size[0]:
  153. ex += 1
  154. if sy > 0:
  155. sy -= 1
  156. if ey < size[1]:
  157. ey += 1
  158. # print (sx,ex,sy,ey)
  159. return (sx, sy, ex, ey, total)
  160. def output_image(pix, size):
  161. """
  162. For the size of the area we have reduced down to where the majority of dark pixels,
  163. are located, store all that into a list and return the list.
  164. given pixel for function passing.
  165. returns multiple strings in a list that are edited to use characters to represent,
  166. the dark and light pixels of the image. (Grey Scale)
  167. """
  168. result = []
  169. ex = size[0]
  170. sx = 0
  171. ey = size[1]
  172. sy = 0
  173. for y in range(sy, ey):
  174. s = ""
  175. for x in range(sx, ex):
  176. # if is_set(pix, x, y):
  177. if not is_green(pix, x, y):
  178. s += ON
  179. else:
  180. s += OFF
  181. result.append(s)
  182. return result
  183. def image_filename(difficulty, index):
  184. return f"images/{difficulty}_{index}.png"
  185. def cleaned_filename(difficulty, index):
  186. return f"images/{difficulty}_{index}_clean.png"
  187. def cleaner_filename(difficulty, index):
  188. return f"images/{difficulty}_{index}_cleaner.png"
  189. def image_cleaner(source, destination):
  190. image = Image.open(source)
  191. # pixels = image.load()
  192. size = image.size
  193. #print(f"Size: {size[0]} x {size[1]}")
  194. for y in range(0, size[1]):
  195. s = ""
  196. for x in range(0, size[0]):
  197. (r, g, b, _) = image.getpixel( (x,y) )
  198. high = r
  199. if b > high:
  200. high = b
  201. diff = g - high
  202. is_green = diff > 0 # GREEN_DIFF
  203. if is_green:
  204. image.putpixel( (x,y), (255,255,255,255) )
  205. else:
  206. image.putpixel( (x,y), (0, 0, 0, 255) )
  207. # if is_set(pix, x, y):
  208. # if not is_green(pix, x, y):
  209. # result.append(s)
  210. image.save(destination)
  211. def run(difficult, index):
  212. """
  213. run, represents a single execution of components to the image, (Actuall we do it 1 category at a time instead of just 1 single execution )
  214. those components do the following... (Each category has around 70 items so we standardize on 70, but )
  215. (not all of the categories have 70 and thus we print a File does not exist)
  216. We open and load the image, and get it's size,
  217. then we scan_img for dark and light pixels, <-- This narrows the image down to just the majority of dark pixels
  218. then from that we output the image line by line onto the screen after it has been output_image d into list form,
  219. Where we ask the user what the word is, and after that we save all that to a file in the data directory.
  220. """
  221. for x in range(0, 70):
  222. fname = image_filename(difficult, x)
  223. if not os.path.exists(fname):
  224. # print("Could not find '{0}'".format(fname))
  225. # continue
  226. # We've reached the end, so stop looking. :P
  227. break
  228. print(f"Loading: {fname}")
  229. im = Image.open(fname)
  230. pix = im.load()
  231. size = im.size
  232. print(f"Size: {size[0]} x {size[1]}")
  233. pal = im.getpalette()
  234. sx = 0
  235. ex = size[0]
  236. sy = 0
  237. ey = size[1]
  238. total = 0
  239. sx, sy, ex, ey, total = scan_img(pix, size)
  240. print(f"Chars within ({sx}, {sy}) - ({ex}, {ey}) total {total} pixels")
  241. img_s = output_image(pix, size)
  242. for l in img_s:
  243. print(l)
  244. word = input("Word: ")
  245. # Returns word so it can be stored in dictonary
  246. return word
  247. #print(f"Image saved to '{DIR}/{difficult}_{x}.txt' in byte string")
  248. # os.remove(f'{fname}') # Grr No bad bean, keep file for error checking
  249. # print(f"File '{fname}' automatically removed")
  250. key_word = {}
  251. def autotrain(difficult):
  252. """
  253. run, represents a single execution of components to the image, (Actuall we do it 1 category at a time instead of just 1 single execution )
  254. those components do the following... (Each category has around 70 items so we standardize on 70, but )
  255. (not all of the categories have 70 and thus we print a File does not exist)
  256. We open and load the image, and get it's size,
  257. then we scan_img for dark and light pixels, <-- This narrows the image down to just the majority of dark pixels
  258. then from that we output the image line by line onto the screen after it has been output_image d into list form,
  259. Where we ask the user what the word is, and after that we save all that to a file in the data directory.
  260. """
  261. for x in range(0, 70):
  262. fname = image_filename(difficult, x)
  263. if not os.path.exists(fname):
  264. break
  265. # print("Could not find '{0}'".format(fname))
  266. # continue
  267. cleaned = cleaned_filename(difficult, x)
  268. if not os.path.exists(cleaned):
  269. imager.image_cleaner(fname, cleaned)
  270. print(f"Loading: {cleaned} ", end='')
  271. fileout = "data/{0}_{1}".format(difficult, x)
  272. output = subprocess.run(
  273. ["tesseract", cleaned, fileout],
  274. stderr=subprocess.DEVNULL,
  275. # capture_output=False,
  276. shell=False,
  277. )
  278. with open(fileout + ".txt", "r") as fp:
  279. word = fp.read().strip().lower()
  280. key_word[f'{difficult}_{x}'] = word
  281. print(word)
  282. # Now to call all the previous functions
  283. if args.download:
  284. print("Downloading s0urce.io Words")
  285. print("EASY")
  286. # time.sleep(5)
  287. for e in range(0, 62):
  288. download("e", e)
  289. # time.sleep(random.randint(10, 15))
  290. print("MEDIUM")
  291. # time.sleep(5)
  292. for m in range(0, 66):
  293. download("m", m)
  294. # time.sleep(random.randint(10, 15))
  295. print("HARD")
  296. # time.sleep(5)
  297. for h in range(0, 55):
  298. download("h", h)
  299. # time.sleep(random.randint(10, 15))
  300. if args.train:
  301. # Img Processing: Run thru every single category and every single word
  302. wordDict = {}
  303. for level in ["e", "m", "h"]:
  304. autotrain(level)
  305. with open(args.JSON, 'w') as fp:
  306. json.dump(key_word, fp, sort_keys=True, indent=2)
  307. if args.update:
  308. with open(args.JSON, 'r') as fp:
  309. key_word = json.load(fp)
  310. # update the s0urce.js script
  311. filename = 's0urce.js'
  312. with open(filename, 'r') as fp:
  313. lines = fp.readlines()
  314. # Lines are now in memory. Time to update!
  315. for i in range(0, len(lines)):
  316. if 'http://s0urce.io/client/img/word/' in lines[i]:
  317. # This is a target line, so:
  318. l = lines[i].strip().strip(':').strip('"')
  319. parts = l.split('/')
  320. dif = parts[-2]
  321. index = parts[-1]
  322. key = f'{dif}_{index}'
  323. pprint(parts)
  324. pprint(key)
  325. word = key_word[key]
  326. lines[i+1] = f' form.value = "{word}";' + "\n" # break;\n" # You may need it... or may not.
  327. with open(filename, 'w') as fp:
  328. for line in lines:
  329. fp.write(line)
  330. # ----------------------------------------------------------------------------------------
  331. # All below was in a seperate dataJS.py file... but now I have fixed it so it's 1 script!
  332. # Do we really need to worry about all this right now? (I think we have enough bugs to begin with.)
  333. JSONME = "false" # Do not execute
  334. if JSONME.lower() != "false":
  335. print("Now exporting to JSON")
  336. print(f"Targeting file: '{JSONME}'")
  337. time.sleep(5)
  338. def test(t):
  339. global DIR
  340. """
  341. given the filename, we read it and add it to a list and return the list.
  342. """
  343. fname = f"{DIR}/{t}.txt"
  344. r = []
  345. try:
  346. with open(fname, "r") as f:
  347. for l in f:
  348. r.append(l.strip())
  349. return r
  350. except FileNotFoundError:
  351. return None
  352. def insertJS(item):
  353. global JSON
  354. """
  355. Edits the file given and adds the JSONIFIED item to the file between 2 indicators,
  356. // T
  357. and
  358. // t
  359. In between the T and t will be replaced with the item.
  360. """
  361. item = json.dumps(item)
  362. item = f"{item},"
  363. r = []
  364. try:
  365. with open(f"{JSONME}", "r") as f:
  366. for l in f:
  367. if l != "":
  368. r.append(l.strip("\n"))
  369. else:
  370. r.append("")
  371. except FileNotFoundError:
  372. print(f"File {JSONME} Not Found!")
  373. sys.exit()
  374. c = 0
  375. for e in r:
  376. if "// T" == e:
  377. temp = r[c + 1]
  378. del r[c + 1]
  379. r.insert(c + 1, item)
  380. r.insert(c + 2, temp)
  381. elif "// t" == e:
  382. break
  383. c += 1
  384. with open(f"{JSONME}", "w") as f:
  385. for e in r:
  386. f.write(f"{e}\n")
  387. for x in range(0, 183):
  388. te = test(x)
  389. if te != None:
  390. word = te
  391. insertJS(word)
  392. # Regardless what we did let the user know we at least ran and we are now done
  393. print("Complete")