#!/usr/bin/env python3 from PIL import Image from pprint import pprint import sys import time import os import requests import random import json import argparse import subprocess import imager parser = argparse.ArgumentParser(description="S0urce.io utility program.") parser.add_argument("--download", help="Download Images", action="store_true") parser.add_argument("--train", help="Convert Images to Text", action="store_true") parser.add_argument("--update", help="Update s0urce.js script", action="store_true") parser.add_argument( "JSON", type=str, nargs="?", help="Filename to save results", default="test.js" ) args = parser.parse_args() # pprint(args) # Should we add the JSON in a file? (True is filename, False = do not do) # JSONME = 'test.js' JSONME = args.JSON # NOTE: To begin the insert of the JSONIFIED image and word its # // T # A JS comment with a uppercase T # To stop its # // t # A JS comment with a lowercase t # httpbin.org/headers sess = requests.Session() head = { "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" } sess.headers.update(head) ON = "X" # Dark pixel in an image OFF = "." # Light pixel in an image DIR = ( "data" ) # Data directory name, do we really need this? Is it really going to change? INTENSITY = ( 75 ) # How bright does something have to be to trigger it being a dark or light pixel? # Looks like around 75 removes the extra stuff that s0urce.io does to prevent it from being just matching images. GREEN_DIFF = 10 # How much brighter the green channel must be (compared to the others), # to be called green. # Check the environment, do we have all that we need? if not os.path.exists("images"): os.mkdir("images") if not os.path.exists("data"): os.mkdir("data") if not os.path.exists("words.yml"): with open('words.yml', 'w') as f: # Create a empty yaml file f.write('') def download(howhard, index): global sess """ Download an image based upon how hard it is. On success, it saves the image file. Failure raises ConnectionError. """ r = sess.get(f"http://s0urce.io/client/img/word/{howhard}/{index}") if r.status_code == 200: with open(f"images/{howhard}_{index}.png", "wb") as f: f.write(r.content) if os.path.exists(f"images/{howhard}_{index}_clean.png"): os.remove(f"images/{howhard}_{index}_clean.png") else: # We did not get a 200 Okay, log this... Hmm maybe we need to make a log file? # print( f'{howhard}_{index}.png ' + str(r.status_code) ) raise ConnectionError( "http://s0urce.io/client/img/word/{0}/{1} returned status_code {2}".format( howhard, index, r.status_code ) ) def img_point(pix, x, y): """ img_point, returns a pixel of an image, given the x and y on the image. """ return pix[x, y] def img_avg(pix, x, y): """ img_avg, returns the average brightness 0-255, given pixel, and the x and y on the image calls img_point, to get the individual rgb values to calculate, brightness. (Grey scale) """ rgb = img_point(pix, x, y) # if(im.mode == 'P'): # rgb = pal[rgb*3:(rgb+1)*3] # if(im.mode == 'I'): # return rgb >> 8 return int((rgb[0] + rgb[1] + rgb[2]) / 3) def is_set(pix, x, y): global INTENSITY """ is_set, returns True or False of calculating, the brightness of the given point on a image, compared to given intensity. True means the brightness at the given x and y, is Less Than which means its dark. False means the brightness at the given x and y, is Greater Than which means its bright. (Grey Scale) """ avg = img_avg(pix, x, y) return avg < INTENSITY def is_green(pix, x, y): """ Is this pixel Green? """ (red, green, blue, _) = img_point(pix, x, y) # Find the difference between green and the other values. other = red if blue > other: other = blue diff = green - other return diff > GREEN_DIFF def scan_img(pix, size): """ scan_img, looks at a image and looks for dark pixels, if it is a dark pixel record the number and resize the, returned values to show where the most dark pixels on the, image are located. (Grey Scale) given pixel, and image size. returns start x, y and end x, y and total number of dark pixels. """ total = 0 sx = size[0] ex = 0 sy = size[1] ey = 0 for y in range(0, size[1]): for x in range(0, size[0]): pnt_is = is_set(pix, x, y) if pnt_is: total += 1 if x < sx: sx = x if x > ex: ex = x if y < sy: sy = y if y > ey: ey = y # print (sx,ex,sy,ey) # give us a little border to work with if sx > 0: sx -= 1 if ex < size[0]: ex += 1 if sy > 0: sy -= 1 if ey < size[1]: ey += 1 # print (sx,ex,sy,ey) return (sx, sy, ex, ey, total) def output_image(pix, size): """ For the size of the area we have reduced down to where the majority of dark pixels, are located, store all that into a list and return the list. given pixel for function passing. returns multiple strings in a list that are edited to use characters to represent, the dark and light pixels of the image. (Grey Scale) """ result = [] ex = size[0] sx = 0 ey = size[1] sy = 0 for y in range(sy, ey): s = "" for x in range(sx, ex): # if is_set(pix, x, y): if not is_green(pix, x, y): s += ON else: s += OFF result.append(s) return result def image_filename(difficulty, index): return f"images/{difficulty}_{index}.png" def cleaned_filename(difficulty, index): return f"images/{difficulty}_{index}_clean.png" def cleaner_filename(difficulty, index): return f"images/{difficulty}_{index}_cleaner.png" def image_cleaner(source, destination): image = Image.open(source) # pixels = image.load() size = image.size #print(f"Size: {size[0]} x {size[1]}") for y in range(0, size[1]): s = "" for x in range(0, size[0]): (r, g, b, _) = image.getpixel( (x,y) ) high = r if b > high: high = b diff = g - high is_green = diff > 0 # GREEN_DIFF if is_green: image.putpixel( (x,y), (255,255,255,255) ) else: image.putpixel( (x,y), (0, 0, 0, 255) ) # if is_set(pix, x, y): # if not is_green(pix, x, y): # result.append(s) image.save(destination) def run(difficult, index): """ 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 ) those components do the following... (Each category has around 70 items so we standardize on 70, but ) (not all of the categories have 70 and thus we print a File does not exist) We open and load the image, and get it's size, then we scan_img for dark and light pixels, <-- This narrows the image down to just the majority of dark pixels then from that we output the image line by line onto the screen after it has been output_image d into list form, Where we ask the user what the word is, and after that we save all that to a file in the data directory. """ for x in range(0, 70): fname = image_filename(difficult, x) if not os.path.exists(fname): # print("Could not find '{0}'".format(fname)) # continue # We've reached the end, so stop looking. :P break print(f"Loading: {fname}") im = Image.open(fname) pix = im.load() size = im.size print(f"Size: {size[0]} x {size[1]}") pal = im.getpalette() sx = 0 ex = size[0] sy = 0 ey = size[1] total = 0 sx, sy, ex, ey, total = scan_img(pix, size) print(f"Chars within ({sx}, {sy}) - ({ex}, {ey}) total {total} pixels") img_s = output_image(pix, size) for l in img_s: print(l) word = input("Word: ") # Returns word so it can be stored in dictonary return word #print(f"Image saved to '{DIR}/{difficult}_{x}.txt' in byte string") # os.remove(f'{fname}') # Grr No bad bean, keep file for error checking # print(f"File '{fname}' automatically removed") key_word = {} def autotrain(difficult): """ 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 ) those components do the following... (Each category has around 70 items so we standardize on 70, but ) (not all of the categories have 70 and thus we print a File does not exist) We open and load the image, and get it's size, then we scan_img for dark and light pixels, <-- This narrows the image down to just the majority of dark pixels then from that we output the image line by line onto the screen after it has been output_image d into list form, Where we ask the user what the word is, and after that we save all that to a file in the data directory. """ for x in range(0, 70): fname = image_filename(difficult, x) if not os.path.exists(fname): break # print("Could not find '{0}'".format(fname)) # continue cleaned = cleaned_filename(difficult, x) if not os.path.exists(cleaned): imager.image_cleaner(fname, cleaned) print(f"Loading: {cleaned} ", end='') fileout = "data/{0}_{1}".format(difficult, x) output = subprocess.run( ["tesseract", cleaned, fileout], stderr=subprocess.DEVNULL, # capture_output=False, shell=False, ) with open(fileout + ".txt", "r") as fp: word = fp.read().strip().lower() key_word[f'{difficult}_{x}'] = word print(word) # Now to call all the previous functions if args.download: print("Downloading s0urce.io Words") print("EASY") # time.sleep(5) for e in range(0, 62): download("e", e) # time.sleep(random.randint(10, 15)) print("MEDIUM") # time.sleep(5) for m in range(0, 66): download("m", m) # time.sleep(random.randint(10, 15)) print("HARD") # time.sleep(5) for h in range(0, 55): download("h", h) # time.sleep(random.randint(10, 15)) if args.train: # Img Processing: Run thru every single category and every single word wordDict = {} for level in ["e", "m", "h"]: autotrain(level) with open(args.JSON, 'w') as fp: json.dump(key_word, fp, sort_keys=True, indent=2) if args.update: with open(args.JSON, 'r') as fp: key_word = json.load(fp) # update the s0urce.js script filename = 's0urce.js' with open(filename, 'r') as fp: lines = fp.readlines() # Lines are now in memory. Time to update! for i in range(0, len(lines)): if 'http://s0urce.io/client/img/word/' in lines[i]: # This is a target line, so: l = lines[i].strip().strip(':').strip('"') parts = l.split('/') dif = parts[-2] index = parts[-1] key = f'{dif}_{index}' pprint(parts) pprint(key) word = key_word[key] lines[i+1] = f' form.value = "{word}";' + "\n" # break;\n" # You may need it... or may not. with open(filename, 'w') as fp: for line in lines: fp.write(line) # Regardless what we did let the user know we at least ran and we are now done print("Complete")