-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
24,344 additions
and
16,117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
__pycache__ | ||
.ipynb_checkpoints | ||
.vscode | ||
*.csv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,39 @@ | ||
# TinyML for Predict Gesture on ESP32-C3 | ||
--- | ||
|
||
## 概述 | ||
基于6轴传感器数据采样(加速度计和陀螺仪),识别两种手势动作 | ||
## 硬件 | ||
![image](Images/beetle.jpg) | ||
![image](Images/mu9250.jpg) | ||
## 流程 | ||
|
||
## 框架 | ||
Tensorflow | ||
Keras | ||
Tensorflow Lite Micro | ||
## 环境 | ||
### Python | ||
Python 3.8 | ||
Tensorflow | ||
PyOpenGL | ||
|
||
### Arduino | ||
ESP32 Arduino | ||
Tensorflow Lite-ESP32 | ||
ESP32 Arduino 2.0.3 | ||
TensorFlowLite_ESP32 0.9.0 | ||
|
||
## 设计 | ||
### 数据 | ||
1.2s 数据长度,采样率 100/s | ||
|
||
### 模型 | ||
线性全连接网络 | ||
720-向量输入,2-向量输出 | ||
|
||
## 流程 | ||
数据采集 | ||
预处理 | ||
训练 | ||
推理应用 | ||
|
||
## 代码 | ||
## 代码 | ||
Host | ||
prediect_gesture |
Oops, something went wrong.