Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"cmake.sourceDirectory": "C:/Users/KIIT/Documents/GitHub/RuView/firmware/esp32-csi-node"
}
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 32 additions & 21 deletions rust-port/wifi-densepose-rs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ chrono = { version = "0.4", features = ["serde"] }
# UUID for unique identifiers
uuid = { version = "1.6", features = ["v4", "serde"] }


[dev-dependencies]
serde_json.workspace = true
proptest.workspace = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ ruvector-solver = { workspace = true }
midstreamer-temporal-compare = { workspace = true }
midstreamer-attractor = { workspace = true }

# Internal
wifi-densepose-core = { version = "0.3.0", path = "../wifi-densepose-core" }

[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
proptest.workspace = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ serde = { workspace = true, optional = true }

# Async runtime (optional, for Tier 2 async scanning)
tokio = { workspace = true, optional = true }
wifi-densepose-signal.workspace = true
wifi-densepose-nn.workspace = true
wifi-densepose-mat.workspace = true
wifi-densepose-hardware.workspace = true
wifi-densepose-ruvector = { workspace = true, features = ["crv"] }
wifi-densepose-wasm.workspace = true

[features]
default = ["serde", "pipeline"]
Expand Down
12 changes: 6 additions & 6 deletions ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WiFi DensePose: Human Tracking Through Walls</title>
<title>Aura Tracker: Human Tracking Through Walls</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<!-- Header -->
<header class="header">
<h1>WiFi DensePose</h1>
<p class="subtitle">Human Tracking Through Walls Using WiFi Signals</p>
<h1>Aura Tracker</h1>
<p class="subtitle">Human Tracking Through Walls Using WiFi Signals & Signal Distortion</p>
<div class="header-info">
<span class="api-version"></span>
<span class="api-environment"></span>
Expand Down Expand Up @@ -154,7 +154,7 @@ <h3>Real-Time</h3>
<div class="benefit-card">
<div class="benefit-icon">💰</div>
<h3>Low Cost</h3>
<p>Built using $30 commercial WiFi hardware</p>
<p>Built using ₹1300 commercial WiFi hardware</p>
</div>
</div>

Expand All @@ -172,7 +172,7 @@ <h3>Low Cost</h3>
<span class="stat-label">Accuracy (AP@50)</span>
</div>
<div class="stat" data-stat="hardware-cost">
<span class="stat-value">$30</span>
<span class="stat-value">₹1300</span>
<span class="stat-label">Hardware Cost</span>
</div>
</div>
Expand Down Expand Up @@ -235,7 +235,7 @@ <h3>WiFi Configuration</h3>
</div>

<div class="csi-data">
<h4>Real-time CSI Data</h4>
<h4>Real-time RSSI Data</h4>
<div class="csi-display">
<div class="csi-row">
<span>Amplitude:</span>
Expand Down
6 changes: 6 additions & 0 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.