-
Notifications
You must be signed in to change notification settings - Fork 6k
Description
I am working on the WiFiDenSpose human detection system, and I am facing some confusion regarding detection and skeleton modeling. Below is my setup and questions:
My Current Setup
I have configured 2 ESP32 nodes (Node 1 and Node 2).
Both nodes are connected to the same WiFi router.
My PC is also connected to the same router.
Execution
I run the following command successfully:
RUST_LOG=debug cargo run --release --bin sensing-server -- --http-port 8080 --source esp32 --udp-port 5005
The ESP32 logs are displayed correctly.
I can see values like:
Heart Rate (HR)
Breathing Rate (BR)
UI and WebSocket
The UI opens successfully at:
http://localhost:8080/ui/observatory.html
WebSocket connection is also successful:
ws://localhost:8765/ws/sensing
Problem
Even though everything is running:
No human movement is detected.
No skeleton model is generated.
My Questions
1. Can WiFi-only sensing detect humans and generate a skeleton model?
I am currently using only WiFi (ESP32), without any additional sensors.
2. Is additional hardware required?
Do I need sensors like:
mmWave radar
LiDAR
for accurate human detection or skeleton tracking?
3.About the ML Model:
Does your system use a Machine Learning model or just RF sensing?
If an ML model is used:
How does it work in your system?
Is it already deployed in your implementation?
4. Model Replication:
How can I replicate your ML model in my setup?
Steps needed for:
Data collection
Training the model
Deployment in the current system
5. Detection Capability:
Is the current setup only capable of simple presence detection (like motion or breathing)?
Or can it achieve full human pose/skeleton tracking?
Additional Info
I have attached screenshots/logs showing:
ESP32 output (HR, BR values)
UI and WebSocket connection
