Fruit Edibility AI Jetson Nano
See if I like a certain fruit or not.
In the project, I've listed the fruits that I despise, the ones I love, and the ones I've never tried. Based on that information, the AI return whether I should eat it or not. Just to be clear, the AI is not very accurate as I have not trained it long enough. In the future I'm planning on training even more and making it return the fruits instead.
Prerequisites
- Jetson nano
- Python installed
- USB webcam (For live use)
- Jetson-inference (Download below)
Setup
Install CMake
sudo apt-get update
sudo apt-get install git cmake
Install and Clone Jetson Inference
git clone --recursive https://github.com/dusty-nv/jetson-inference
cd jetson-inference
git submodule update --init
Install Python Libraries
sudo apt-get install libpython3-dev python3-numpy
Run CMake
mkdir build
cd build
cmake ../
Make sure googlenet and resnet-18 is selected (will have a star next to it). Others models are optional. No need to install Pytorch.
Download/Clone this project
git clone https://github.com/sqwatato/Fruit-Edibility-AI-Jetson-Nano.git
