Home ONNX YOLOv5 Instance Segmentation
Post
Cancel

Open In GithubOpen In Github

Python scripts performing instance segmentation using the YOLOv5 model in ONNX.

! ONNX YOLOv5 Instance Segmentation Original image: https://www.flickr.com/photos/nicolelee/19041780

Important

  • The input images are directly resized to match the input size of the model. I skipped adding the pad to the input image (image letterbox), it might affect the accuracy of the model if the input image has a different aspect ratio compared to the input size of the model. Always try to get an input size with a ratio close to the input images you will use.

Requirements

  • Check the requirements.txt file.
  • For ONNX, if you have a NVIDIA GPU, then install the onnxruntime-gpu, otherwise use the onnxruntime library.

Installation

1
2
3
git clone https://github.com/ibaiGorordo/ONNX-YOLOv5-Instance-Segmentation.git
cd ONNX-YOLOv5-Instance-Segmentation
pip install -r requirements.txt

ONNX Runtime

For Nvidia GPU computers: pip install onnxruntime-gpu

Otherwise: pip install onnxruntime

ONNX model

You can convert the Pytorch model to ONNX using the following Google Colab notebook: Open In Colab

  • The License of the models is GPL-3.0 license: License

Original YOLOv5 model

The original YOLOv5 Instance Segmentation model can be found in this repository: YOLOv5 Instance Segmentation

Examples

  • Image inference:
    1
    
     python image_instance_segmentation.py
    
  • Webcam inference:
    1
    
     python webcam_instance_segmentation.py
    
  • Video inference: https://youtu.be/p2iUTSiZBas
    1
    
     python video_instance_segmentation.py
    

    !YOLOv5 instance segmentation video

References:

This post is licensed under CC BY 4.0 by the author.