添加 LiDAR-IMU 外参标定流水线与说明文档

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
lichun.qu
2026-08-01 12:02:37 +08:00
co-authored by Cursor
commit cf1fad7594
40 changed files with 5502 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# 一键复现合成标定(Windows
# 用法:在仓库根目录执行
# powershell -File tools\reproduce_synthetic.ps1
# powershell -File tools\reproduce_synthetic.ps1 -SkipPytest
# powershell -File tools\reproduce_synthetic.ps1 -Mode full_se3
param(
[ValidateSet("rotation_only", "full_se3")]
[string]$Mode = "rotation_only",
[switch]$SkipPytest
)
$ErrorActionPreference = "Stop"
$Root = Split-Path -Parent $PSScriptRoot
Set-Location $Root
$args = @("tools\reproduce_synthetic.py", "--mode", $Mode)
if ($SkipPytest) {
$args += "--skip-pytest"
}
python @args
exit $LASTEXITCODE