类似示例
演示
Command Line
1~/depthai-core/examples/python/calibration$ python3 calibration_factory_reset.py
2Factory reset calibration OKCommand Line
1~/depthai-core/examples/python/calibration$ python3 calibration_factory_reset.py
2Factory reset calibration FAIL: [Error message]设置
源代码
PythonGitHub
1#!/usr/bin/env python3
2
3import depthai as dai
4
5device = dai.Device(dai.UsbSpeed.HIGH)
6try:
7 device.factoryResetCalibration()
8 print(f'Factory reset calibration OK')
9except Exception as ex:
10 print(f'Factory reset calibration FAIL: {ex}')需要帮助?
请前往 Discussion Forum 获取技术支持或提出您可能有的任何其他问题。