openmv/scripts/unittest/script/02-rgb_to_grayscale.py
2020-02-01 22:09:04 +02:00

5 lines
132 B
Python

def unittest(data_path, temp_path):
import image
gs = image.rgb_to_grayscale((120, 200, 120))
return (abs(167-gs) < 2)