Deep Learning in Computer Vision Practice Assignment

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

flashcard set

Earn XP

Description and Tags

Fill-in-the-blank practice flashcards covering RANSAC, homography, CNN fundamentals, object detection models like YOLO and Mask R-CNN, and tracking-by-detection concepts.

Last updated 3:50 PM on 6/22/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

The main purpose of RANSAC in feature matching is to reject geometrically inconsistent __________.

matches

2
New cards

An inlier in RANSAC is a point or match that agrees with the estimated model within a __________.

threshold

3
New cards

For homography estimation using RANSAC, the minimum number of point correspondences sampled in one trial is __________.

44

4
New cards

A homography is mainly used to map points between two image __________.

planes

5
New cards

A homography is represented by a 3×33 \times 3 matrix with __________ degrees of freedom.

88

6
New cards

The main difference between classical filters and CNN filters is that CNN filters are learned from __________ during training.

data

7
New cards

In a convolutional layer, each trainable kernel produces one __________.

feature map

8
New cards

__________ controls how far the kernel moves at each step during the convolution process.

Stride

9
New cards

__________ is used in CNNs to allow boundary pixels to be processed and to control the spatial size of the output.

Padding

10
New cards

The __________ activation function adds non-linearity by setting all negative values to zero.

ReLU

11
New cards

__________ average pooling converts each complete feature map into one single average value.

Global

12
New cards

During CNN training, __________ is responsible for computing how weights contributed to the total error.

backpropagation

13
New cards

Data augmentation is used to increase training-data variation and improve model __________.

generalization

14
New cards

Dropout helps reduce __________ by randomly setting some activations to zero during training.

overfitting

15
New cards

YOLO is categorized as a __________ detector because it predicts boxes and classes directly in one forward pass.

single-stage

16
New cards

The three common components of the YOLO architecture are the backbone, neck, and __________.

detection head

17
New cards

Non-Maximum Suppression (NMS) is used in object detection to remove overlapping duplicate detections and keep the __________ box.

strongest

18
New cards

Mask R-CNN extends object detection by adding a segmentation __________ for each detected instance.

mask

19
New cards

SAM is a promptable model that focuses on generating segmentation masks from prompts such as __________ or boxes.

points

20
New cards

The metric __________ measures the overlap between a predicted box and the ground truth.

IoU

21
New cards

In a tracking-by-detection pipeline, the detector first predicts __________ in each video frame.

boxes

22
New cards

Unlike a tracker using only box overlap, __________ uses appearance features to compare how objects look to reduce identity switches.

DeepSORT

23
New cards

If a system needs to mark the exact pixels of a damaged region, __________ is more suitable than simple object detection.

segmentation

24
New cards

Two-stage detectors, such as __________, first generate candidate object regions before classifying them.

Faster R-CNN

25
New cards

When evaluating a model on a dataset with a rare class, metrics such as precision, __________, and F1-score are more informative than accuracy.

recall