Automatic commit. Thu Oct 18 12:00:02 WST 2012
[matches/honours.git] / research / TCS / pressure / process_digits.py
index f9728a3..1b2c9dd 100755 (executable)
@@ -84,6 +84,7 @@ def PickDigit(pix, r):
                "1110110" : 2,
                "0000011" : 1,
                "1011111" : 0
+               
        }
 
        w = r[2] - r[0]
@@ -114,6 +115,7 @@ def PickDigit(pix, r):
 
        
                #Check where the boxes are
+       """
        if (filled in d) == False:
                img = Image.new("RGB", (r[2]-r[0], r[3]-r[1]), "white")
                draw = ImageDraw.Draw(img)
@@ -133,6 +135,7 @@ def PickDigit(pix, r):
                        draw.rectangle(box, fill=None, outline="blue")
                img.show()
                #return 0
+       """
 
        if filled in d:
                return d[filled]
@@ -197,7 +200,12 @@ if __name__ == "__main__":
                print("?")
                sys.exit(1)
        
-       print(str(r[0]) + "." + str(r[1]) + str(r[2]) + "e-"  + str(r[3]))
+       if (len(r) == 4):
+               print(str(r[0]) + "." + str(r[1]) + str(r[2]) + "e-"  + str(r[3]))
+       elif (len(r) == 3):
+               print(str(r[0]) + "." + str(r[1]) + "e-" + str(r[2]))
+       else:
+               print("#?")
        sys.exit(0)
 
 

UCC git Repository :: git.ucc.asn.au