lab转RGB函数报错lab_to_rgb()
-
def colorfunc():
img = sensor.snapshot() # Take a picture and return the image.
statistics=img.get_statistics(roi=ROI)
color_l=statistics.l_mode()
color_a=statistics.a_mode()
color_b=statistics.b_mode()
print(color_l,color_a,color_b)
rgb=img.lab_to_rgb(color_l,color_a,color_b)
print(rgb)
img.draw_rectangle(ROI)
-
lab_to_rgb是一个函数,不是image对象的方法。
可以运行的代码:
import image print(image.lab_to_rgb((22, -26, 23)))
-
@kidswong999 谢谢,我试一下