You can scarcely find a good article on deploying computer vision systems in industrial scenarios. So, we decided to write a blog post series on the topic. The topics we will cover in this ...
YOLOv5: Expert Guide to Custom Object Detection Training
In this article, we are fine tuning YOLOv5 models for custom object detection training and inference. Introduction The field of deep learning started taking off in 2012. Around that time, it ...
Intersection over Union (IoU) in Object Detection & Segmentation
Intersection Over Union (IoU) is a number that quantifies the degree of overlap between two boxes. In the case of object detection and segmentation, IoU evaluates the overlap of the Ground Truth and ...
Document Segmentation Using Deep Learning in PyTorch
Document Scanning is a background segmentation problem that can be solved using various methods. It is one of the extensively used applications of computer vision. In this article, we are considering ...
Object Tracking and Reidentification with FairMOT
Arguably, the most crucial task of a Deep Learning based Multiple Object Tracking (MOT) is not to identify an object, but to re-identify it after occlusion. There are a plethora of trackers available ...
FCOS- Anchor Free Object Detection Explained
FCOS: Fully Convolutional One-stage Object Detection is an anchor-free (anchorless) object detector. It solves object detection problems in a per-pixel prediction fashion, similar to segmentation. ...