當前位置: 首頁>>代碼示例>>Python>>正文


Python Motor.test_count方法代碼示例

本文整理匯總了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']))
開發者ID:zooliet,項目名稱:UWTracking,代碼行數:33,代碼來源:main.py


注:本文中的motor.Motor.test_count方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。