Monks Wealthy Monks
Carnegie Mellon's WiFi DensePose Is Now Open Source — and It Could Change How AI Sees the World
A research project from one of the world's leading robotics institutions has just gone public on GitHub: a system that maps human body movement in three dimensions using nothing but a standard WiFi router. No cameras. No wearables. No privacy compromises.
The history of human-computer interaction has largely been a story of cameras getting smaller, sensors getting cheaper, and tracking getting more precise. What it has rarely been is a story of cameras disappearing entirely. WiFi DensePose, a research project developed at Carnegie Mellon University and now available as an open-source repository, is an attempt to change that — and the implications reach considerably further than its technical specifications might initially suggest.
The core proposition is straightforward, even if the engineering behind it is not. Standard WiFi signals, the same radio waves already filling every home, office, and public space on earth, bounce off human bodies in patterns that carry information about how those bodies are positioned and moving. WiFi DensePose captures those reflections, runs them through a deep learning model trained on thousands of labelled movement samples, and reconstructs a three-dimensional map of human pose — in real time, at thirty frames per second, through walls, in complete darkness, without a single image ever being captured.
The repository went live in May 2026 and has accumulated over 2,500 stars in its first weeks. It is worth understanding why.
The technical pipeline behind WiFi DensePose breaks into three stages, each of which represents a non-trivial engineering achievement in its own right.
The repository is live at github.com/cmu-robotics/wifi-densepose and includes three pre-trained models, the full CMU WiFi Pose Dataset, a Streamlit-based browser demo, and comprehensive documentation. The quick-start sequence takes approximately ten minutes on a standard development machine.
The browser interface provides a live 3D visualisation of pose detection using your existing WiFi hardware. No specialised equipment is required beyond a standard router and a computer with a WiFi adapter.
| Feature | WiFi DensePose | Camera (OpenPose) | Depth Camera (Kinect) |
|---|---|---|---|
| Privacy | ✓ No imaging | ✗ Video feed | ✗ Point cloud |
| Through walls | ✓ Yes | ✗ No | ✗ No |
| Low light | ✓ Full darkness | ✗ Needs light | ⚠ Infrared only |
| Accuracy | <5cm RMSE | 3–5cm RMSE | 2–4cm RMSE |
| Hardware cost | $0 (existing router) | $0 (phone camera) | $150+ (sensor) |
| Licence | MIT (open source) | Apache 2.0 | Proprietary |
WiFi DensePose is not itself a publicly traded company, but the technology it demonstrates is an early and credible signal for several sectors that are attracting serious capital in 2026. Radio frequency sensing is becoming a genuine platform technology — the same capability that enables WiFi pose detection also underlies contactless vital sign monitoring, through-wall security sensing, and ambient presence detection in smart buildings.
- RF sensing chipmakers — Qualcomm, Intel, and Broadcom all have meaningful positions in WiFi 6 and 6E silicon where RF sensing capabilities are increasingly embedded
- AR/VR platform companies — Meta and Apple Vision Pro both benefit from ambient sensing that reduces the hardware burden of immersive computing
- AI infrastructure — NVIDIA and AMD supply the GPU compute that makes real-time deep learning pose extraction feasible at edge devices
- Healthcare technology — remote patient monitoring and ambient care platforms are direct commercial beneficiaries of privacy-first sensing
Does this require specialised WiFi hardware?
No. The system is compatible with standard WiFi 5 and WiFi 6 routers — the hardware already present in most homes and offices. WiFi 6E improves accuracy in environments with multiple simultaneous users, but is not required to run the demo or explore the core functionality.
How does this address privacy concerns about radio frequency tracking?
The system processes radio frequency signal data — not images or video. No visual representation of the person is ever created or stored. The output is a skeletal pose map: joint positions and movement data, architecturally similar to what you would see in a motion capture session, without any identifying visual information. The researchers describe it as GDPR-compliant by design.
What is the difference between WiFi DensePose and Meta's DensePose?
Meta's DensePose system operates on RGB camera images — it is a computer vision system that maps human surface geometry from video input. WiFi DensePose uses the same output format and pose representation but derives it entirely from radio frequency signals, with no camera input at any stage. The two systems solve the same problem by fundamentally different means.
What licence does the repository use?
The repository is released under the MIT licence, which permits free use for both personal and commercial applications. Attribution to the CMU research team is required. The dataset and pre-trained models are included under the same terms.
Is mobile support available?
Native Android and iOS applications are in development and expected in Q3 2026. Current testing and development is best done on a PC or Mac with a standard WiFi adapter. The browser-based Streamlit demo runs on any machine without additional configuration.
How can developers contribute?
Fork the repository, add features or improvements, and submit a pull request. The CMU team and open-source contributors are actively reviewing contributions, with a stated turnaround of approximately seven days for initial feedback.
The most significant technologies tend to share a common characteristic in their early stages: the problem they solve does not feel urgent until the solution exists, and then the absence of it begins to seem strange. Camera-free human sensing is at that inflection point. WiFi DensePose is not the finished product — it is open-source research, with the limitations and rough edges that implies. But it is a credible, working demonstration of a capability that has meaningful implications for privacy, healthcare, computing, and the physical environment of daily life. The repository is live. The barrier to entry is a WiFi router and thirty minutes.
GitHub repository: github.com/cmu-robotics/wifi-densepose · Stars: 2,500+ · Licence: MIT · Contributors: CMU Robotics Institute + open-source community