Limelight Lib Python
limelightlib-python 是与 Limelight 设备交互的最简单方式。它可以在所有操作系统(MacOS、Windows、Linux)和架构(x86、ARM)上运行。
- https://github.com/LimelightVision/limelightlib-python
- https://pypi.org/project/limelightlib-python/
安装
pip install limelightlib-python
使用方法
import limelight
import limelightresults
import json
import time
discovered_limelights = limelight.discover_limelights(debug=True)
print("discovered limelights:", discovered_limelights)
if discovered_limelights:
limelight_address = discovered_limelights[0]
ll = limelight.Limelight(limelight_address)
results = ll.get_results()
status = ll.get_status()
print("-----")
print("targeting results:", results)
print("-----")
print("status:", status)
print("-----")
print("temp:", ll.get_temp())
print("-----")
print("name:", ll.get_name())
print("-----")
print("fps:", ll.get_fps())
print("-----")
print("hwreport:", ll.hw_report())
ll.enable_websocket()
# 打印当前管道设置
print(ll.get_pipeline_atindex(0))
# 更新当前管道并写入磁盘
pipeline_update = {
'area_max': 98.7,
'area_min': 1.98778
}
ll.update_pipeline(json.dumps(pipeline_update),flush=1)
print(ll.get_pipeline_atindex(0))
# 切换到管道1
ll.pipeline_switch(1)
# 更新自定义用户数据
ll.update_python_inputs([4.2,0.1,9.87])
try:
while True:
result = ll.get_latest_results()
parsed_result = limelightresults.parse_results(result)
if parsed_result is not None:
print("valid targets: ", parsed_result.validity, ", pipelineIndex: ", parsed_result.pipeline_id,", Targeting Latency: ", parsed_result.targeting_latency)
#for tag in parsed_result.fiducialResults:
# print(tag.robot_pose_target_space, tag.fiducial_id)
time.sleep(1) # 设置为0以获得最大帧率
except KeyboardInterrupt:
print("Program interrupted by user, shutting down.")
finally:
ll.disable_websocket()
方法
基于REST的方法
- get_results(): 通过HTTP GET获取最新结果。
- capture_snapshot(snapname): 使用给定名称捕获快照。
- upload_snapshot(snapname, image_path): 使用给定名称和图像文件上传快照。
- snapshot_manifest(): 通过HTTP GET检索快照清单。
- delete_snapshots(): 通过HTTP GET删除所有快照。
- upload_neural_network(nn_type, file_path): 上传指定类型的神经网络文件。
- hw_report(): 通过HTTP GET获取硬件报告。
- cal_default(): 通过HTTP GET获取默认校准数据。
- cal_file(): 通过HTTP GET从文件获取校准数据。
- cal_eeprom(): 通过HTTP GET从EEPROM获取校准数据。
- cal_latest(): 通过HTTP GET获取最新校准数据。
- update_cal_eeprom(cal_data): 通过HTTP POST更新EEPROM中的校准数据。
- update_cal_file(cal_data): 通过HTTP POST更新文件中的校准数据。
- delete_cal_latest(): 通过HTTP DELETE删除最新校准数据。
- delete_cal_eeprom(): 通过HTTP DELETE删除EEPROM中的校准数据。
- delete_cal_file(): 通过HTTP DELETE删除文件中的校准数据。
基于WebSocket的方法
- enable_websocket(): 在另一个线程中初始化并启动WebSocket连接。
- disable_websocket(): 关闭WebSocket连接并加入线程。
- get_latest_results(): 返回从WebSocket接收的最新结果。