全局坐标转局部坐标推导

全局坐标转局部坐标

问题定义:

设全局坐标系为 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(θ)。

相关推荐
EdgeOne边缘安全加速平台5 分钟前
EdgeOne Web 防护×AI 升级:让 AI 既参与攻击识别,也参与误报纠错
前端·人工智能·腾讯云·edgeone
朱大喜12 分钟前
matplotlib/Plotly/ECharts 可视化看板设计:从图表选型到交互体验的工程化实践
人工智能
云烟成雨TD29 分钟前
Agent Scope Java 2.x 系列【3】从零构建 ReActAgent
java·人工智能·agent
❀抽抽33 分钟前
证件照制作API接入指南:700+规格一键生成
大数据·网络·人工智能
Promise微笑35 分钟前
绝缘油介损(油介损)测试仪的深层机理、技术演进与精准诊断策略
大数据·网络·人工智能
智者知已应修善业37 分钟前
【51单片机8位数码管同时倒计时从9999】2024-1-25
c++·经验分享·笔记·算法·51单片机
开发者小布39 分钟前
Claude Code 国内配置完整指南:通过中转 API 实现稳定访问(macOS / Linux / Windows)
人工智能
洛水水40 分钟前
【力扣100题】86.柱状图中最大的矩形
算法·leetcode·职场和发展
大C聊AI1 小时前
通用大模型纷纷收费,垂直场景AI工具的价值正在被重估
大数据·人工智能·机器学习·办公效率·ai 工具·智标领航·ai 辅助办公