Object Detection Using TF
Learn about convolutional neural networks-based object detection and use the TF object detection API to detect objects of interest in an input image.
We'll cover the following...
Object detection is a computer vision task that involves identifying and localizing objects of interest within an image or video. Applications of object detection include:
- Object tracking 
- Autonomous driving 
- Surveillance systems 
- Image annotation 
Object classification and localization
Object detection methods comprise two main tasks:
- Object classification: This involves the determination of the class or category of each detected object ... 
 Ask