https://github.com/shchoholiev/it-ingredients-recognizer
Ingredients Recognizer is a Python app for Raspberry PI that powers Ingredients Tracker system, focusing on inventory management and recipe processing for both home and professional kitchens.
https://github.com/shchoholiev/it-ingredients-recognizer
camera python raspberry-pi
Last synced: 16 days ago
JSON representation
Ingredients Recognizer is a Python app for Raspberry PI that powers Ingredients Tracker system, focusing on inventory management and recipe processing for both home and professional kitchens.
- Host: GitHub
- URL: https://github.com/shchoholiev/it-ingredients-recognizer
- Owner: Shchoholiev
- Created: 2024-04-27T19:36:53.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-28T03:15:05.000Z (about 2 years ago)
- Last Synced: 2025-11-13T15:07:20.616Z (8 months ago)
- Topics: camera, python, raspberry-pi
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# it-ingredients-recognizer
Ingredients Recognizer is a Python app for Raspberry PI that powers Ingredients Tracker system, focusing on inventory management and recipe processing for both home and professional kitchens.
## Building application
``` bash
python -m build
```
## Accessing Raspberry Pi through ssh
1. Find Pi in network
``` bash
arp -a
```
2. Connect to Pi: ssh username@devicename
``` bash
ssh shchoholiev@sis-access-point
```
3. Enter password: 1654
## Installing application on Raspberry Pi
1. Copy wheel to Pi
``` bash
scp dist/ingredients_recognizer-1.0.0-py3-none-any.whl shchoholiev@sis-access-point:/home/shchoholiev
```
2. On Raspberry Pi - install app as sudo (required for camera access)
``` bash
sudo pip install ingredients_recognizer-1.0.0-py3-none-any.whl
```
3. Run the app
``` bash
sudo ingredients_recognizer
```