Determining a location based on WIFI APs and Signal Strength

我只是一个虾纸丫 提交于 2019-12-08 08:41:14

问题


I need to determine location based upon N number of WIFI Access Points and their signal strengths. Is the best way to do this using a least-squares fit algorithm? How would I go about implementing such an algorithm?


回答1:


Least Squares fitting should work if your noise in the signal strength is Gaussian, ie. follows a normal distribution.

What you are really looking for is the maximum likelihood estimator for the mean of the signal strength, and you hope that that estimation corresponds in some way to a distance.

"Least squares corresponds to the maximum likelihood criterion if the experimental errors have a normal distribution." -- http://en.wikipedia.org/wiki/Least_squares

So if your signal strength noise is not normally distributed (Gaussian) you are out of luck.

Of course you will also have a standard deviation of your estimate, which will let you know sure you can be of your location estimate. The more wifi signals, and more data points from each signal you can record, the better your estimate will be.

I have been trying to find time to do this too, please do tell how it turns out.



来源:https://stackoverflow.com/questions/6368538/determining-a-location-based-on-wifi-aps-and-signal-strength

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!