RuView is an open-source “WiFi DensePose” implementation leveraging multiple ESP32 nodes to turn WiFi signals into real-time human pose estimation, vital sign monitoring, and presence detection without relying on video cameras.
WiFi DensePose is a sensing technique, first explored in academic research, that leverages WiFi signals to reconstruct human pose. RuView implements this technique in Rust or Python, and relies on your WiFi router and several ESP32 nodes to track body pose, detect breathing rate, and measure heart rate even through walls. As we’ll discuss below, this project has its own controversy, as some claim it’s fake.
The solution relies on Channel State Information (CSI) disturbances caused by human movement to reconstruct body position, breathing rate, heart rate, and presence in real time using “physics-based signal processing and machine learning”.
That obviously means you need CSI-capable hardware, and not all consumer WiFi nodes implement it. The project description lists various hardware options:
- ESP32 Mesh (recommended) – 3-6x ESP32-S3 + WiFi router; About $54 (ESP32 nodes only) for pose, breathing, heartbeat, motion, presence
- Research NIC – Intel 5300 / Atheros AR9580 (~$50-100) with full CSI with 3×3 MIMO
- Other WiFi client – Windows, macOS, or Linux laptop (no extra cost); RSSI-only for coarse presence and motion
If you have no WiFi hardware, the solution runs in simulated mode with synthetic CSI data. However, if you rely on ESP32-S3 mesh, you may be able to meet the following performance metrics:
- Pose estimation – 54K fps (Rust)
- Breathing detection – 6-30 BPM
- Heart rate – 40-120 BPM
- Presence sensing – < 1ms latency
- Through-wall – Up to 5m depth
The installation on the host machine relies on Docker and works on Windows 10/11, macOS 10.15, Ubuntu 18.04 or greater, and you’d also need to install the firmware to each of your ESP32-S3 nodes. It’s also important to understand that presence detection, motion level (how much movement), breathing rate, and signal quality measurements should work out of the box without neural networks. However, the pose estimate with a 17-keypoint skeleton is not a plug-and-play solution, and requires the user to train a model for his/her own environment for this to work. You’ll find the instructions in the user guide on the project’s GitHub repo. After that, you can access the web dashboard on http://localhost:3000. If you just want to have a quick look at the web interface using simulated data, you can check the live demo website.

Some other advertised benefits and highlights of the RuView project and/or the WiFi DensePose technique in general include:
- Privacy – It tracks human pose using only WiFi signals without cameras.
- Multi-person support
- Through-wall support
- Disaster Response – Detects trapped survivors through rubble and classifies injury severity (likely over the top here)
- Multistatic Mesh – 4-6 low-cost sensor nodes work together, combining 12+ overlapping signal paths for full 360-degree room coverage with sub-inch accuracy and no person mix-ups
- Self-Learning from raw WiFi data
- QUIC Mesh Security – All sensor-to-sensor communication is encrypted end-to-end with tamper detection, replay protection, and seamless reconnection if a node moves or drops offline
- AMOLED Display – ESP32-S3 boards with built-in AMOLED screens show real-time presence, vital signs, and room status directly on the sensor
It looks good so far, but about one month ago, Deletexiumu had a look at the project and called it a scam. That was for good reason, since at the time several variables were filled with random data. The repo also noted the lack of pretrained weights, training scripts, dataset, and evaluation code, among other issues.
I haven’t checked all the claims, but checking out the most recent v1/src/hardware/csi_extractor.py file, the randomly generated values are gone:
|
1 2 |
amplitude = all_values[:num_antennas * num_subcarriers].reshape(num_antennas, num_subcarriers) phase = all_values[num_antennas * num_subcarriers:].reshape(num_antennas, num_subcarriers) |
It’s possible the (AI-powered) analysis was done on an early version of the code with only random/simulated data. The science behind the project is real (see link to the research paper in the introduction), Espressif Systems demonstrated a more basic ESP32 WiFi CSI implementation in 2022, and I can see some user reports in the issues tab, various pull requests, and so on. It’s quite likely some of the claims are over the top or only valid in some specific conditions, but nothing points to the project being completely useless. On the downside, I can’t find any video demos of RuView on YouTube, only people *talking* about it.
Via Rimsha Bhardwaj on X.

Jean-Luc started CNX Software in 2010 as a part-time endeavor, before quitting his job as a software engineering manager, and starting to write daily news, and reviews full time later in 2011.
Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress. We also use affiliate links in articles to earn commissions if you make a purchase after clicking on those links.





