Data Augmentation for Bounding Boxes: Rethinking Image Transforms for Object Detection
How to adapt major image augmentation techniques for object detection purposes. We also cover the implementation of horizontal flip augmentation.
How to adapt major image augmentation techniques for object detection purposes. We also cover the implementation of horizontal flip augmentation.
We implement Scale and Translate augmentation techniques, and what to do if a portion of your bounding box is outside the image after the augmentation.
This is part 3 of the series where we are looking at ways to adapt image augmentation techniques to object detection tasks. In this part, we will cover how to implement how to rotate and shear images as well as bounding boxes using OpenCV's affine transformation features.
Previously, we have covered a variety of image augmentation techniques such as Flipping, rotation, shearing, scaling and translating. This part is about how to bring it all together and bake it into the input pipeline for your deep network.
Batch Normalisation does NOT reduce internal covariate shift. This posts looks into why internal covariate shift is a problem and how batch normalisation is used to address it.
An look into how various activation functions like ReLU, PReLU, RReLU and ELU are used to address the vanishing gradient problem, and how to chose one amongst them for your network.
Tutorial on building YOLO v3 detector from scratch detailing how to create the network architecture from a configuration file, load the weights and designing input/output pipelines.
Part 2 of the tutorial series on how to implement your own YOLO v3 object detector from scratch in PyTorch.
Part 3 of the tutorial series on how to implement a YOLO v3 object detector from scratch in PyTorch.