A low cost quadruped robot made by Matrix Robotics.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
Tempura is not only a walking robot cat, it can be brought to life with customizable software, Matrix Robotics kit, and any upgrade you can imagine!
Here's why:
- It can recognize 10 different hand gestures.
- It has more than 12 movement functions.
Tempura's movement is driven by Raspberry pi and Matrix Servo Extension.
And Tempura's vision uses the exclusive Machine Learning Pipeline, which includes Hand Tracking, Gesture Recognition and Robot Motion Control System.
Note that tempura repository has two sub-modules: Raspi-I2C and depthai-hand-tracker.
- If you want to install all sub modules, you can run the following command:
git clone https://github.com/RUI-LONG/tempura.git --recursive
Otherwise, just run the following command:
git clone https://github.com/RUI-LONG/tempura.git
- Install requirements:
cd tempura/depthai-hand-tracker
python3 -m pip install -r requirements.txt
cd ..
Tempura repository three folders: Raspi-I2C 、 depthai-hand-tracker and movements.
movements: All movements are stored in this folder, checkout Movement/movement.py for more details.
Raspi-I2C: Using I2C to connect to Matrix Servo Extension.
depthai-hand-tracker: Using depthai to track hands and recognize hand gestures. Checkout depthai-hand-tracker for more details.
- If you want to simply run a demo, you can run the following command:
python main.py
- If you want to run a demo with a specific movement, you can run the following command:
python test_motions.py
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
GitHub: RUI-LONG