本文整理汇总了Python中motor.Motor.test_count方法的典型用法代码示例。如果您正苦于以下问题:Python Motor.test_count方法的具体用法?Python Motor.test_count怎么用?Python Motor.test_count使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类motor.Motor
的用法示例。
在下文中一共展示了Motor.test_count方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ord
# 需要导入模块: from motor import Motor [as 别名]
# 或者: from motor.Motor import test_count [as 别名]
pause_flag = False
elif key == ord('s') or redis_agent.stop_tracking: # 's' for 트랙킹 중지
redis_agent.stop_tracking = False
if tracking_processing_flag == True:
tracking_processing_flag = False
elif key == ord('u'): # 'u' for 전체 화면 보기
upscale_flag = not upscale_flag
if upscale_flag is False:
cv2.destroyWindow('Full frame')
elif key == ord('i') or redis_agent.center: # 'i' for 모터 위치 초기화
redis_agent.center = False
motor.sum_of_x_degree = motor.sum_of_y_degree = 0
motor.test_count = 0
elif key == ord('w') or redis_agent.start_recording: # 'w' for 파일 쓰기
if redis_agent.start_recording:
redis_agent.start_recording = False
fifo_enable_flag = True
else:
fifo_enable_flag = not fifo_enable_flag
if fifo_enable_flag is True:
# print('[FIFO] Enabled')
fourcc = cv2.VideoWriter_fourcc('M','J','P','G')
if not os.path.exists('/home/uwtec/Documents/captures'):
os.makedirs('/home/uwtec/Documents/captures')
files = glob.glob('/home/uwtec/Documents/captures/{}-*.mkv'.format(cfg['CAPTURE_NAME']))