FrameNest is a tool that uses computer vision to archive, and create searchable image databases with descriptive metadata.
The type of database it builds streamlines the training process of AI models in sectors such as advanced image recognition.
( I basically built it because I myself needed it )
Make sure you have Node.js and Mongo Database installed and running on your Linux.
Additionally, you could also install MongoDB Compass to view the database, it's basically a GUI for MongoDB. ( although not required if you're comfortable with the command line )
- Mongodb cli: donwlod here
- Mongo tools: download here
- Mongo compass: download here
Last but not least, you need an Astica account to use the computer vision API.
- Go to the root directory of the project and create a
.env
file with the following content and replace the values with your own:
ASTICA_KEY=< replace this with your astica computer vision key >
DB_CONNECTION_STRING=< replace this with your mongodb connection string >
- Install the dependencies:
npm install && npm fund
- Lastly, make
db_upload.sh
andstart.sh
executable:
chmod x db_upload.sh start.sh
- Run the following command in the root directory of the project:
./start.sh
- Open your browser and go to
http://localhost:3000/
This installation guide is for Linux users.
- Add code documentation
- Add Windows installation guide
- Add MacOS installation guide