david 5 år sedan
förälder
incheckning
c1b1ca9a59
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      imgProcess.py

+ 2 - 2
imgProcess.py

@@ -85,7 +85,7 @@ class imagery():
 
         for y in range( 0,size[1] ):
             for x in range( 0,size[0] ):
-                pnt_is = self.is_green(pix, x, y)
+                pnt_is = self.is_set(pix, x, y)
                 if (pnt_is):
                     total += 1
                     if x < sx:
@@ -171,5 +171,5 @@ class imagery():
         return word
 
 if __name__ == '__main__':
-    imgTest = imgGrey()
+    imgTest = imagery()
     imgTest.run('test.png')