πŸ•ΈοΈ
Deep Learning
  • πŸ’«Deep Learning Notes
  • πŸ’ΌPractical Tools
  • πŸ’ŽConcepts of Neural Networks
    • 🌱Introduction
    • πŸ”ŽThe Problem in General
    • πŸ‘·β€β™€οΈ Implementation Notes
    • πŸ“šCommon Concepts
    • πŸ’₯Activation Functions
    • 🎈Practical Aspects
    • πŸ‘©β€πŸ”§ NN Regularization
    • ✨Optimization Algorithms
    • 🎨Softmax Regression
    • πŸƒβ€β™€οΈ Introduction to Tensorflow
    • πŸ‘©β€πŸ’» Python Code Snippets
  • πŸ™‹β€β™€οΈ Hello World of Deep Learning with Neural Networks
    • 🌱Introduction
    • 🌐CNNs In Browser
  • πŸšͺIntroduction to Computer Vision
    • 🌱Introduction
  • 🚩Concepts of Convolutional Neural Networks
    • 🌱Introduction
    • πŸ“ŒCommon Concepts
    • 🌟Advanced Concepts
    • πŸ‘€Visualization
    • πŸ‘΅Classic Networks
    • ✨Other Approaches
    • πŸ•ΈοΈCommon Applications
  • πŸ‘©β€πŸ’» Works and Notes on CNNs
    • 🌱Introduction
  • πŸ’„Popular Strategies of Deep Learning
    • 🌱Introduction
    • πŸš™Transfer Learning
    • πŸ“šOther Strategies
  • 🀑Image Augmentation
    • 🌱Introduction
  • πŸ€Έβ€β™€οΈ Notes on Applied Machine Learning
    • 🌱Introduction
    • πŸ‘©β€πŸ”§ Notes on Structuring Machine Learning Projects
    • πŸ‘©β€πŸ« Implementation Guidelines
  • πŸ•΅οΈβ€β™€οΈ Basics of Object Detection
    • 🌱Introduction
    • β­•Region-Based CNNs
    • 🀳SSD and YOLO
    • πŸ€–TensorFlow Object Detection API
    • 🐞Model Debugging
  • ➰Sequence Models In Deep Learning
    • 🌱Introduction
    • πŸ“šGeneral Concepts
    • πŸ”„Recurrent Neural Networks
    • 🌌Vanishing Gradients with RNNs
    • 🌚Word Representation
    • πŸ’¬Mixed Info On NLP
  • πŸ’¬NLP
    • 🌱Introduction
  • πŸ’¬Applied NLP
    • πŸ™ŒπŸ» Handling texts
    • 🧩Regex
  • πŸ‘€Quick Visual Info
  • πŸ“šPDFs that I found and recommend
Powered by GitBook
On this page
  • πŸ“š Common Terms
  • πŸ“‘ More Detailed
  • ✨ Popular Detection CNNs
  • πŸ€Έβ€β™€οΈ Object Detection Series

Was this helpful?

Export as PDF
  1. πŸ•΅οΈβ€β™€οΈ Basics of Object Detection

Introduction

πŸ•΅οΈβ€β™€οΈ Popular Object Detection Techniques

πŸ“š Common Terms

Term

Description

Classification

Specifying the label (class) of an object in input image

Classification and Localization

Specifying the label and coordinates of an object in input image

Object Detection

Specifying labels and coordinates of multiple objects in input image

πŸ“‘ More Detailed

Classification

Clf. and Localization

Detection

#of objects

1

1

multiple

Input

image

image

image

Output

label

label + coordinates

label(s) + coordinates

✨ Popular Detection CNNs

  • R-CNN (Regional Based Convolutional Neural Networks)

  • Fast R-CNN (Regional Based Convolutional Neural Networks)

  • Faster R-CNN (Regional Based Convolutional Neural Networks)

  • RFCN (Region Based Fully Connected Convolutional Neural Networks)

  • YOLO (You Only Look Once)

    • YOLO V1

    • YOLO V2

    • YOLO V3

  • SSD (Single Shot Detection)

πŸ€Έβ€β™€οΈ Object Detection Series

PreviousπŸ•΅οΈβ€β™€οΈ Basics of Object DetectionNextRegion-Based CNNs

Last updated 4 years ago

Was this helpful?

🌱