It is important to understand the different kinds of object recognition tasks, as the required neural network architecture greatly depends on the task. Object recognition tasks can be broadly classified into three different types:
- Image classification
- Object detection
- Instance segmentation
The following diagram depicts the difference between each task:
In Image Classification, the input to the problem is an image and the required output is simply a prediction of the class that the image belongs to. This is analogous to our first project, where we constructed a classifier to predict whether a patient is at ...