python 三边测量定位的实现代码

作者:Answerman33 时间:2023-02-03 08:37:31 

定位原理很简单,故不赘述,直接上源码,内附注释。(如果对您的学习有所帮助,还请帮忙点个赞,谢谢了)


#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed May 16 10:50:29 2018
@author: dag
"""
import sympy
import numpy as np
import math
from matplotlib.pyplot import plot
from matplotlib.pyplot import show
import matplotlib.pyplot as plt
import matplotlib
#解决无法显示中文问题,fname是加载字体路径,根据自身pc实际确定,具体请百度
zhfont1 = matplotlib.font_manager.FontProperties(fname='/System/Library/Fonts/Hiragino Sans GB W3.ttc')

#随机产生3个参考节点坐标
maxy = 1000
maxx = 1000
cx = maxx*np.random.rand(3)
cy = maxy*np.random.rand(3)
dot1 = plot(cx,cy,'k^')

#生成盲节点,以及其与参考节点欧式距离
mtx = maxx*np.random.rand()
mty = maxy*np.random.rand()
plt.hold('on')
dot2 = plot(mtx,mty,'go')
da = math.sqrt(np.square(mtx-cx[0])+np.square(mty-cy[0]))
db = math.sqrt(np.square(mtx-cx[1])+np.square(mty-cy[1]))
dc = math.sqrt(np.square(mtx-cx[2])+np.square(mty-cy[2]))

#计算定位坐标  
def triposition(xa,ya,da,xb,yb,db,xc,yc,dc):
   x,y = sympy.symbols('x y')
   f1 = 2*x*(xa-xc)+np.square(xc)-np.square(xa)+2*y*(ya-yc)+np.square(yc)-np.square(ya)-(np.square(dc)-np.square(da))
   f2 = 2*x*(xb-xc)+np.square(xc)-np.square(xb)+2*y*(yb-yc)+np.square(yc)-np.square(yb)-(np.square(dc)-np.square(db))
   result = sympy.solve([f1,f2],[x,y])
   locx,locy = result[x],result[y]
   return [locx,locy]

#解算得到定位节点坐标
[locx,locy] = triposition(cx[0],cy[0],da,cx[1],cy[1],db,cx[2],cy[2],dc)
plt.hold('on')
dot3 = plot(locx,locy,'r*')

#显示脚注
x = [[locx,cx[0]],[locx,cx[1]],[locx,cx[2]]]
y = [[locy,cy[0]],[locy,cy[1]],[locy,cy[2]]]
for i in range(len(x)):
   plt.plot(x[i],y[i],linestyle = '--',color ='g' )
plt.title('三边测量法的定位',fontproperties=zhfont1)  
plt.legend(['参考节点','盲节点','定位节点'], loc='lower right',prop=zhfont1)
show()
derror = math.sqrt(np.square(locx-mtx) + np.square(locy-mty))
print(derror)

输出效果图:

python 三边测量定位的实现代码

补充:python opencv实现三角测量(triangulation)

看代码吧~


import cv2
import numpy as np
import scipy.io as scio
if __name__ == '__main__':
   print("main function.")
   #验证点
   point = np.array([1.0 ,2.0, 3.0])
   #获取相机参数
   cams_data = scio.loadmat('/data1/dy/SuperSMPL/data/AMAfMvS_Dataset/cameras_I_crane.mat')
   Pmats = cams_data['Pmats']  # Pmats(8, 3, 4) 投影矩阵
   P1 = Pmats[0,::]
   P3 = Pmats[2,::]
   #通过投影矩阵将点从世界坐标投到像素坐标
   pj1 = np.dot(P1, np.vstack([point.reshape(3,1),np.array([1])]))
   pj3 = np.dot(P3, np.vstack([point.reshape(3,1),np.array([1])]))
   point1 = pj1[:2,:]/pj1[2,:]#两行一列,齐次坐标转化
   point3 = pj3[:2,:]/pj3[2,:]
   #利用投影矩阵以及对应像素点,进行三角测量
   points = cv2.triangulatePoints(P1,P3,point1,point3)
   #齐次坐标转化并输出
   print(points[0:3,:]/points[3,:])

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

来源:https://blog.csdn.net/weixin_41285821/article/details/80360924

标签:python,三边测量,定位
0
投稿

猜你喜欢

  • HTTP头信息总结

    2022-10-06 16:09:40
  • oracle表空间扩容详情

    2024-01-12 15:31:54
  • python自动发送邮件脚本

    2023-01-24 07:56:28
  • Asp中通过简单的例子理解下ByVal和ByRef的用法

    2011-02-20 10:57:00
  • python轻松过滤处理脏话与特殊敏感词汇

    2022-02-07 15:53:28
  • python ChainMap管理用法实例讲解

    2022-05-01 19:02:22
  • 使用Python实现图像标记点的坐标输出功能

    2022-10-31 16:15:06
  • 站长如何活用"nofollow"标签

    2008-05-13 12:40:00
  • linux下安装mysql简单的方法

    2024-01-19 21:02:46
  • MySQL的DATE_FORMAT函数的使用

    2024-01-18 09:52:28
  • Python3实现汉语转换为汉语拼音

    2022-02-28 11:27:54
  • MySQL选错索引的原因以及解决方案

    2024-01-19 21:34:34
  • Python中HMAC加密算法的应用

    2021-07-29 15:55:18
  • SQL实现数据过滤流程详解

    2024-01-13 02:52:48
  • 在图片上显示左右箭头类似翻页的代码

    2024-04-19 09:48:20
  • python+pytest自动化测试函数测试类测试方法的封装

    2021-12-26 21:03:14
  • 详解MySQL中ALTER命令的使用

    2024-01-26 12:27:25
  • sklearn+python:线性回归案例

    2023-10-19 20:07:01
  • Python对列表排序的方法实例分析

    2023-03-02 18:26:57
  • ASP实现防止网站被采集代码

    2011-03-25 10:40:00
  • asp之家 网络编程 m.aspxhome.com