Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 1.74 KB

Object_detection.md

File metadata and controls

40 lines (22 loc) · 1.74 KB

Object detection

Object detection had an explosion about finding the position of the object in addition to labeling the object is called object localization. Typically, the position of the object is defined by rectangular coordinates. Finding multiple objects in the image with rectangular coordinates is called detection

Methods

Anchor based methods

1 EfficientDet: Scalable and Efficient Object Detection

Improved - crowded objects

1 Anchor Pruning for Object Detection - 2020

2 RMOPP: Robust Multi-Objective Post-Processing for Effective Object Detection - 2021

3 LLA: Loss-aware Label Assignment for Dense Pedestrian Detection - 2021

Anchor Free methods

Embedded

1 General Instance Distillation for Object Detection - 2021

Dataset

1 ImageNet dataset - There are 200 objects for detection problems with 470,000 images, with an average of 1.1 objects per image

2 PASCAL VOC challenge - There are 20 classes in the dataset. The dataset has 11,530 images for training and validations with 27,450 annotations for regions of interest

  1. Person: Person
  2. Animal: Bird, cat, cow, dog, horse, sheep
  3. Vehicle: Airplane, bicycle, boat, bus, car, motorbike, train
  4. Indoor: Bottle, chair, dining table, potted plant, sofa, tv/monitor
  5. There is an average of 2.4 objects per image.

3 COCO object detection - dataset has 200,000 images with more than 500,000 object annotations in 80 categories

  1. The average number of objects is 7.2 per image.