我是靠谱客的博主 聪慧悟空,最近开发中收集的这篇文章主要介绍空间3点投影定位算法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

               

空间3点投影定位算法

 

本文博客链接:http://blog.csdn.net/jdh99,作者:jdh,转载请注明.


环境:

 

主机:WIN7

开发环境:Qt


 

说明:

<<仿GPS的4星定位程序>>(http://blog.csdn.net/jdh99/article/details/7349771)提供了空间4点定位1点的算法.实际中此算法需要4个基站有较大的高度差,如果在同一高度则定位误差很大.实际中,定位基站一般装在同一平面.利用平面投影可以将空间定位转换为平面定位从而避免这个问题.

 

具体做法:

每个基站具有平面坐标(x,y)以及一个高度h.测到距离d后,对距离进行平面投影处理:d = sqrt(d^2 - h^2).接下来就是平面定位.

 

测试程序:

界面widget.ui:

<?xml version="1.0" encoding="UTF-8"?><ui version="4.0"> <class>Widget</class> <widget class="QWidget" name="Widget">  <property name="geometry">   <rect>    <x>0</x>    <y>0</y>    <width>561</width>    <height>372</height>   </rect>  </property>  <property name="windowTitle">   <string>Widget</string>  </property>  <widget class="QPushButton" name="pushButton">   <property name="geometry">    <rect>     <x>60</x>     <y>270</y>     <width>75</width>     <height>23</height>    </rect>   </property>   <property name="text">    <string>计算</string>   </property>  </widget>  <widget class="QLineEdit" name="p1x">   <property name="geometry">    <rect>     <x>60</x>     <y>70</y>     <width>41</width>     <height>20</height>    </rect>   </property>   <property name="text">    <string>0</string>   </property>  </widget>  <widget class="QLineEdit" name="d1">   <property name="geometry">    <rect>     <x>360</x>     <y>70</y>     <width>113</width>     <height>20</height>    </rect>   </property>   <property name="text">    <string>1</string>   </property>  </widget>  <widget class="QLabel" name="label">   <property name="geometry">    <rect>     <x>210</x>     <y>20</y>     <width>181</width>     <height>21</height>    </rect>   </property>   <property name="font">    <font>     <pointsize>16</pointsize>    </font>   </property>   <property name="text">    <string>空间3点投影定位</string>   </property>  </widget>  <widget class="QLabel" name="label_2">   <property name="geometry">    <rect>     <x>10</x>     <y>70</y>     <width>48</width>     <height>12</height>    </rect>   </property>   <property name="text">    <string>第1点:</string>   </property>  </widget>  <widget class="QLabel" name="label_3">   <property name="geometry">    <rect>     <x>300</x>     <y>70</y>     <width>48</width>     <height>12</height>    </rect>   </property>   <property name="text">    <string>距离:</string>   </property>  </widget>  <widget class="QLabel" name="label_4">   <property name="geometry">    <rect>     <x>10</x>     <y>110</y>     <width>48</width>     <height>12</height>    </rect>   </property>   <property name="text">    <string>第2点:</string>   </property>  </widget>  <widget class="QLabel" name="label_5">   <property name="geometry">    <rect>     <x>300</x>     <y>110</y>     <width>48</width>     <height>12</height>    </rect>   </property>   <property name="text">    <string>距离:</string>   </property>  </widget>  <widget class="QLabel" name="label_6">   <property name="geometry">    <rect>     <x>10</x>     <y>150</y>     <width>48</width>     <

最后

以上就是聪慧悟空为你收集整理的空间3点投影定位算法的全部内容,希望文章能够帮你解决空间3点投影定位算法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部