Cool! I'm glad to see RFID and localization being merged together like this. I think this really shows that RFID is a much more suitable technology for this type of application than a computation-heavy CV algorithm.
I'm prototyping an IoT system that will use RFID tags to track inventory as it moves around an area. The system will provide live updates on location. Imagine knowing exactly where things are at all times through a simple dashboard. Nothing super amazing, but not boring. :)
I'm first author on that Pervasive article... my PhD thesis focused on using passive UHF RFID tags affixed to objects, people, etc to allow mobile robots to quickly take inventory and then approach (locate) tagged objects in the home [1].
Passive UHF RFID tags are nice for a number of reasons: super-low tag cost (sub-$0.10 in bulk), long range (6+ meters), and lack of a battery (tags harvest wireless power from a reader). Bluetooth solutions will have a hard time competing with UHF RFID on these properties -- and that's key for certain applications. However, there are definitely benefits to an alternative solution like wireless triangulation. For example, even the best UHF tag localization algorithms produce error bounds on the order of 0.5 meters (there are workarounds for mobile robots). Plus, the Bluetooth solution doesn't require the reader to be mobile -- you can take a single measurement and get a decent pose estimate.
I still share a lot of your concerns: if this is using triangulation, you'll need multiple base stations (ie. infrastructure costs); many similar systems require extensive calibration; and the effects of multipath, diffusion, and fading can be very tricky to characterize.
As for mapping... SLAM mapping using ultra-low cost laser rangefinders [2] is nearing triviality, and even onboard visual SLAM is becoming imminently feasible. Anyway... happy to speak more offline. My contact info is easy to find.
Pretty cool. You can achieve similar localization accuracy with WiFi, BLE, ZigBee, or long-range RFID. Common techniques are time of flight (ToF, or time of arrival), FMCW ranging, fingerprinting, or signal strength modeling.
Depending on the method used, the limitations arise from (a) needing to know ground truth location of beacons; (b) any necessary training steps; (c) multipath issues; (d) synchronization; or (e) other non-ideal RF artifacts.
You can also combine multiple sensor measurements over time (eg. a person's path) using bayesian inference techniques (ie. particle filters) to further improve location accuracy.
(This topic is related to my PhD thesis: mobile robots finding and interacting with long-range RFID tags in homes. Many of the techniques are akin to radar: http://www.travisdeyle.com/research.html)
I can see this being a lot more useful if it had positional tracking like air tags, but it's definitely still interesting for many applications like you suggested.
I am curious how the data sending works. Can it transmit anywhere or does it need certain devices in range?
you're wrong. RFID is generally a very poor way to track/locate. have you ever played with a tile? they're not accurate to 1cm (yes I know they use ble).
I've tried to do position triangulation with RFID signal strength and had pretty terrible results. I suspect wifi would be just as bad. An infrared system would probably work well I think. (I know you addressed this)
That being said, sign me up. I have a friend with an oculus dev kit and it has blown me away time and time again. I can see this kind of thing becoming reality. Just stick foam padding all over the place and you're golden.
Exactly! In the end, we ended up just publishing on arXiv.org and writing up a blog post [1]. It's not earth shattering... just an entirely new idea being demonstrated for the first time. The mathy background certainly exists, and was explained in other cited papers, but wasn't necessary to explain the new ideas.
Doing accurate triangulation (localization) of a bluetooth receiver from a bunch of active bluetooth nodes is maybe a little more difficult than it seems.
Certainly a great idea in theory, but the accuracy of your localization will depend on the signal propagation model you apply to the received signal strength (RSS) that the phone provides. I would bet that it's difficult to find a phone that will give you signal strength in dBm at a high update rate.
I worked on a localization project using passive RFID tags and an RFID reader (a more power efficient setup than having active bluetooth nodes). Especially in a store/mall type environment with many people moving around, I think it becomes hard to get a decent model of expected signal propagation (mainly due to constantly changing multi-path signal amplitude).
All of that said, for your application you might be able to get by with the reduced accuracy (within 10 feet might work?).
With bluetooth, you also have to consider the number of connections a bluetooth receiver can handle. That will probably greatly restrict your density of nodes. RFID again holds an advantage here, in that RFID is a very low-level interaction, while bluetooth is much higher level. This problem just screams RFID. Too bad everybody's phone doesn't have a built-in RFID reader... or a software radio!
I vaguely remember an article from around the time RFID passports were a hot issue, in which researchers used multiple capturing devices and were able to square the reading distance. I don't know whether that was specific to the distance they used, the type of RFID, or even an upper limit, but it was an unbelievable improvement.
My Senior Design Project, for getting my BS in Computer Engineering, was around indoor positioning. Granted we did it with Bluetooth and not Wi-Fi, but it's awesome that there'll be an API for it.
Very cool. They are using Time Difference of Arrival analysis[1], the fact that most devices have two or more antennas, and clever software to get 10-80 cm accuracy at a good enough frequency to be used as a positional reference in a quadcopter, see the paper[2] for more info
Existing indoor positioning systems such as Bluetooth LE beacons and WiFi triangulation[3] only use the RSSI value and trigonometry to figure out the position. This method is slow (5Hz or so) and the resolution of the RSSI is bad unless you sample it directly, eg with SDR (which incidentally, is what my dissertation is about!)
Already exists in prod. At a meetup several years ago, it was demonstrated that you could track a person’s location in an adjacent room by triangulating Wi-Fi interference.
I’m not into RF so this is a bit imprecise, but it took like a RPi with GNU radio, a second router, and some code to diff the signals into a location.
The demos were compelling, you could see a heatmap of a user waving and so on. This is a product already sold.
reply