当前位置: 首页>>代码示例>>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;未经允许,请勿转载。