我想问一下我这个if函数的语法有错误吗?
-
import sensor, image, time sensor.reset() # 初始化摄像头 sensor.set_pixformat(sensor.RGB565) # 格式为 RGB565. sensor.set_framesize(sensor.QVGA) sensor.skip_frames(10) # 跳过10帧,使新设置生效 sensor.set_auto_whitebal(False) # Create a clock object to track the FPS. ROI=(80,30,15,15) while(True): 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() if (statistics.a_mode()>0): color_a=1 else: color_a=0 print(color_a) img.draw_rectangle(ROI)
-
一看缩进就不对,会报错。