Computer Vision Flashcards
(7 cards)
Write down 4 computer vision tasks
Classification, object detection, segmentation, and captioning
What is the difference between semantic and instance segmentation?
Semantic segmentation: classifying each pixel in an image into a predefined category.
Instance segmentation: Semantic segmentation + distinguishes between different instances of the same class.
Write down the formula for pixel accuracy and mean pixel accuracy
Check notes
What is the F1 score?
(2 * Precision * Recall) / (Precision + Recall)
What is IoU?
|A ∩ B| / |A ∪ B|
What is the difference between one and two stage object detection?
Two stage first finds regions and then classifies, while one stage does it all in one go.
How does Contrastive Language–Image Pre-training combine text and images?
It encodes both into a space where labels and images share a high cosine similarity.