|  | @@ -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')
 |