Welcome to the official Aerobotix INSAT Computer Vision App ๐
This project showcases our work in computer vision through:
- ๐ฅ๏ธ A modern ElectronJS + TailwindCSS application presenting our projects.
- ๐ฎ A fun Fruit Ninja with Computer Vision game built with Python + OpenCV.
This app will be presented during the INSAT Club Integration Day to demonstrate our clubโs expertise in robotics and vision systems.
Aerobotix_App/
โ
โโโ assets/ # Logos & screenshots
โ โโโ aerobotixlogo.png
โ โโโ fruitgame.png
โ โโโ app.png
โ
โโโ src/ # HTML presentations
โ โโโ welcome.html
โ โโโ presentation1.html
โ โโโ presentation2.html
โ โโโ fruit-ninja-with-computer-vision-main/
โ โโโ main.py # Fruit Ninja CV game entry
โ โโโ ... (Python code)
โ
โโโ requirements.py # Installs Python dependencies
โโโ main.js # Electron main process
โโโ package.json
```bash git clone https://github.com//Aerobotix_App.git cd Aerobotix_App ```
Make sure Python (3.10+ recommended) is installed.
Run once to install and verify dependencies:
```bash python requirements.py ```
โก๏ธ After this, you can already run the Fruit Ninja game directly: ```bash cd src/fruit-ninja-with-computer-vision-main python main.py ```
Install Node.js (LTS recommended). Then:
```bash npm install ```
Start the app: ```bash npm start ```
```bash npm run dist ```
If you cloned the repo, update absolute paths in these files before running:
-
`src/presentation1.html` ```html <img src="C:/Users/<YOUR_NAME>/Desktop/Aerobotix_App/assets/robot.png" ... /> ```
-
`src/presentation2.html` ```html <img src="C:/Users/<YOUR_NAME>/Desktop/Aerobotix_App/assets/img2.jpg" ... /> <img src="C:/Users/<YOUR_NAME>/Desktop/Aerobotix_App/assets/img1.jpg" ... /> ```
-
`main.js`
Update paths for:- `icon`
- `preload.js`
- `welcome.html`
- `main.py` (Fruit Ninja game)
- `pythonPath`
๐ Replace C:/Users/LENOVO/Desktop/... with your own absolute repo path.
We are Aerobotix Club โ INSAT, passionate about robotics, AI, and computer vision.
This project merges fun + learning, showing the real power of vision-based systems in interactive demos.
๐ Together we build the future of robotics!

