Install Anaconda from this link https://www.anaconda.com/download
Launch anaconda and create Python Environment by executing the following command
conda create -n sat python=3.10
Then activate it by
conda activate sat
Move to the source code folder:
cd <path to SegmentAnnotator>
Install required packages:
pip install -r requirements.txtCreate models folder
Download two models, vit_b_decoder_quantized.onnx and vit_b_encoder_quantized.onnx, from OneDrive, and save them into the models folder.
At the end, the models folder should have the following structure:
models
|- vit_b_decoder_quantized.onnx
|- vit_b_encoder_quantized.onnx
Run python main.py