mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
5 lines
132 B
Python
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)
|