更新 main/README.md

This commit is contained in:
2025-10-21 11:14:27 +08:00
parent c134abf749
commit a6505573b9

View File

@ -30,19 +30,21 @@ pip install opencv-python numpy rknnlite
您也可以直接调用 calculate_offset_from_image 函数,以便集成到其他项目中: 您也可以直接调用 calculate_offset_from_image 函数,以便集成到其他项目中:
示例 1: 仅获取偏移量(不画图) 示例 1: 仅获取偏移量(不画图)
**
```bash
from calculate_offset import calculate_offset_from_image from calculate_offset import calculate_offset_from_image
result = calculate_offset_from_image("your_image_path.jpg", visualize=False) result = calculate_offset_from_image("your_image_path.jpg", visualize=False)
if result['success']: if result['success']:
print(f"Offset: DeltaX={result['dx_mm']:+.2f} mm, DeltaY={result['dy_mm']:+.2f} mm") print(f"Offset: DeltaX={result['dx_mm']:+.2f} mm, DeltaY={result['dy_mm']:+.2f} mm")
else: else:
print("Error:", result['message']) print("Error:", result['message'])
** ```
示例 2: 获取偏移量并保存可视化图 示例 2: 获取偏移量并保存可视化图
**
```bash
from calculate_offset import calculate_offset_from_image from calculate_offset import calculate_offset_from_image
result = calculate_offset_from_image("your_image_path.jpg", visualize=True) result = calculate_offset_from_image("your_image_path.jpg", visualize=True)
** ```
该函数返回一个包含下列字段的字典: 该函数返回一个包含下列字段的字典:
@ -51,4 +53,4 @@ result = calculate_offset_from_image("your_image_path.jpg", visualize=True)
dy_mm: 垂直偏移(毫米) dy_mm: 垂直偏移(毫米)
cx: 中心点 x 坐标(像素) cx: 中心点 x 坐标(像素)
cy: 中心点 y 坐标(像素) cy: 中心点 y 坐标(像素)
message: 错误信息或成功提示 message: 错误信息或成功提示