本文整理匯總了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']))