全局坐标转局部坐标推导

全局坐标转局部坐标

问题定义:

设全局坐标系为 OworldO_{world}Oworld,自车当前状态为:

  • 位置:(xc,yc)(x_c, y_c)(xc,yc)
  • 朝向:θc\theta_cθc(与全局 X 轴的夹角,逆时针为正)

目标点状态为:

  • 位置:(xt,yt)(x_t, y_t)(xt,yt)
  • 朝向:θt\theta_tθt

Step1: 平移

先将原点平移到自车位置,得到目标点在全局系下的相对偏移:

dx dy\]=\[xt−xc yt−yc\] \\begin{bmatrix} dx \\ dy \\end{bmatrix} = \\begin{bmatrix} x_t - x_c \\ y_t - y_c \\end{bmatrix} \[dx dy\]=\[xt−xc yt−yc

Step 2:旋转

全局坐标系旋转 θc\theta_cθc 后与自车局部坐标系对齐。要把全局偏移量转到局部系,需要反向旋转 −θc-\theta_c−θc,即乘以旋转矩阵 R(−θc)R(-\theta_c)R(−θc):

R(θ)=cos⁡θ−sin⁡θ sin⁡θcos⁡θ⇒R(−θc)=cos⁡θcsin⁡θc −sin⁡θccos⁡θc R(\theta) = \begin{bmatrix} \cos\theta & -\sin\theta \ \sin\theta & \cos\theta \end{bmatrix} \quad \Rightarrow \quad R(-\theta_c) = \begin{bmatrix} \cos\theta_c & \sin\theta_c \ -\sin\theta_c & \cos\theta_c \end{bmatrix} R(θ)=cosθ−sinθ sinθcosθ⇒R(−θc)=cosθcsinθc −sinθccosθc

因此:

xlocal ylocal\]=R(−θc)\[dx dy\]=\[cos⁡θcsin⁡θc −sin⁡θccos⁡θc\]\[dx dy\] \\begin{bmatrix} x_{local} \\ y_{local} \\end{bmatrix} = R(-\\theta_c) \\begin{bmatrix} dx \\ dy \\end{bmatrix} = \\begin{bmatrix} \\cos\\theta_c \& \\sin\\theta_c \\ -\\sin\\theta_c \& \\cos\\theta_c \\end{bmatrix} \\begin{bmatrix} dx \\ dy \\end{bmatrix} \[xlocal ylocal\]=R(−θc)\[dx dy\]=\[cosθcsinθc −sinθccosθc\]\[dx dy

展开得:

xlocal=dx⋅cos⁡θc+dy⋅sin⁡θc \boxed{ x_{local} = dx \cdot \cos\theta_c + dy \cdot \sin\theta_c } xlocal=dx⋅cosθc+dy⋅sinθc

ylocal=−dx⋅sin⁡θc+dy⋅cos⁡θc \boxed{ y_{local} = -dx \cdot \sin\theta_c + dy \cdot \cos\theta_c } ylocal=−dx⋅sinθc+dy⋅cosθc

代码实现如下:

python 复制代码
def to_local_coords(target_x, target_y, target_yaw, curr_x, curr_y, curr_yaw):
    """全局坐标转换到自车局部坐标系"""
    curr_yaw = np.deg2rad(curr_yaw)
    target_yaw = np.deg2rad(target_yaw)
    dx = target_x - curr_x
    dy = target_y - curr_y
    local_x = dx * np.cos(curr_yaw) + dy * np.sin(curr_yaw)
    local_y = -dx * np.sin(curr_yaw) + dy * np.cos(curr_yaw)
    local_yaw = target_yaw - curr_yaw
    return np.array([local_x, local_y, np.cos(local_yaw), np.sin(local_yaw)])

旋转矩阵的推导

问题设定

设有一个向量 v⃗\vec{v}v ,其在原坐标系中的坐标为 (x,y)(x, y)(x,y),与 X 轴的夹角为 α\alphaα,模长为 rrr:

x=rcos⁡α,y=rsin⁡α x = r\cos\alpha, \quad y = r\sin\alpha x=rcosα,y=rsinα

现在将坐标系逆时针旋转 θ\thetaθ 角 (等价于向量顺时针旋转 θ\thetaθ 角 ),求新坐标 (x′,y′)(x', y')(x′,y′)。


Step 1:用极坐标表示原向量

v⃗=(rcos⁡α, rsin⁡α) \vec{v} = (r\cos\alpha,\ r\sin\alpha) v =(rcosα, rsinα)


Step 2:旋转后用极坐标表示新向量

旋转后,向量与 X 轴夹角变为 α+θ\alpha + \thetaα+θ,模长不变:

x′=rcos⁡(α+θ) x' = r\cos(\alpha + \theta) x′=rcos(α+θ)

y′=rsin⁡(α+θ) y' = r\sin(\alpha + \theta) y′=rsin(α+θ)


Step 3:展开三角函数

x′=rcos⁡(α+θ)=r(cos⁡αcos⁡θ−sin⁡αsin⁡θ) x' = r\cos(\alpha + \theta) = r(\cos\alpha\cos\theta - \sin\alpha\sin\theta) x′=rcos(α+θ)=r(cosαcosθ−sinαsinθ)

y′=rsin⁡(α+θ)=r(sin⁡αcos⁡θ+cos⁡αsin⁡θ) y' = r\sin(\alpha + \theta) = r(\sin\alpha\cos\theta + \cos\alpha\sin\theta) y′=rsin(α+θ)=r(sinαcosθ+cosαsinθ)

将 rcos⁡α=xr\cos\alpha = xrcosα=x,rsin⁡α=yr\sin\alpha = yrsinα=y 代入:

x′=xcos⁡θ−ysin⁡θ x' = x\cos\theta - y\sin\theta x′=xcosθ−ysinθ

y′=xsin⁡θ+ycos⁡θ y' = x\sin\theta + y\cos\theta y′=xsinθ+ycosθ


Step 4:写成矩阵形式

x′ y′\]=\[cos⁡θ−sin⁡θ sin⁡θcos⁡θ\]⏟R(θ)\[x y\]\\begin{bmatrix} x' \\ y' \\end {bmatrix} =\\underbrace{\\begin{bmatrix} \\cos\\theta \& -\\sin\\theta \\ \\sin\\theta \& \\cos\\theta \\end{bmatrix}}_{R(\\theta)} \\begin{bmatrix} x \\ y \\end{bmatrix} \[x′ y′\]=R(θ) \[cosθ−sinθ sinθcosθ\]\[x y

这就是逆时针旋转 θ\thetaθ 的旋转矩阵 R(θ)R(\theta)R(θ)。

相关推荐
CIO_Alliance4 小时前
AI+iPaaS解决方案深度整合:让跨系统业务流程自动化一步到位
人工智能·ipaas·系统集成·ai+ipaas·企业cio联盟·企业级ai化转型
苏州IT威翰德4 小时前
算力资产“续命”专家:苏州威翰德科技赋能NVIDIA高端AI芯片芯片级维修
大数据·人工智能
天上路人4 小时前
A59P双波束语音模块:神经网络降噪在远场拾音中的工程实现分析
人工智能·深度学习·神经网络·ai降噪·ai语音·麦克风·回音消除
冬奇Lab4 小时前
AI 评测系列(03):LLM-as-Judge——让 LLM 评价 LLM 的正确姿势
人工智能·llm
Miao121315 小时前
某海外住宿平台如何在大规模场景下实现指标一致性:Minerva 指标平台实践
大数据·数据库·人工智能
冬奇Lab5 小时前
每日一个开源项目(第164篇):毕昇(BISHENG)- 面向企业的开源 LLM DevOps 平台
人工智能·开源·agent
奋发向前wcx5 小时前
y1,y2总复习笔记5 2026.7.19
数据结构·笔记·算法
声讯电子5 小时前
录音笔AI降噪方案:从录得到到听得清的听觉革命
人工智能·语音识别
小小测试开发5 小时前
Playwright vs Selenium vs Cypress:从浏览器协议到 API 设计的全面对比与实测
人工智能·selenium·测试工具
Ai_easygo6 小时前
AI Agent开发入门——从ReAct到Tool Calling,拆解Agent的底层运行逻辑
前端·人工智能·react.js