0
0
Computer Visionml~5 mins

SSD concept in Computer Vision - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does SSD stand for in object detection?
SSD stands for Single Shot MultiBox Detector, a method to detect objects in images in one pass.
Click to reveal answer
intermediate
How does SSD detect objects differently from two-stage detectors like Faster R-CNN?
SSD detects objects in a single step without a separate region proposal stage, making it faster but still accurate.
Click to reveal answer
intermediate
What role do default boxes (anchor boxes) play in SSD?
Default boxes are pre-set boxes of different sizes and aspect ratios used to predict object locations and classes at multiple scales.
Click to reveal answer
intermediate
Why does SSD use multiple feature maps at different scales?
Using multiple feature maps helps SSD detect objects of various sizes by looking at different levels of detail.
Click to reveal answer
beginner
What are the main outputs of the SSD model for each default box?
For each default box, SSD outputs a class score (what object it might be) and box offsets (how to adjust the box to fit the object).
Click to reveal answer
What is the main advantage of SSD over two-stage detectors?
AIt detects objects in a single pass, making it faster.
BIt uses more complex region proposals.
CIt requires multiple passes over the image.
DIt only detects one object per image.
What are default boxes in SSD used for?
ATo generate multiple guesses for object locations and sizes.
BTo increase image resolution.
CTo reduce the number of classes.
DTo crop the image into smaller parts.
Why does SSD use multiple feature maps at different scales?
ATo avoid using default boxes.
BTo reduce the number of parameters.
CTo increase training time.
DTo detect objects of different sizes effectively.
What does SSD output for each default box?
AOnly the bounding box coordinates.
BOnly the class label.
CClass scores and box location adjustments.
DImage segmentation masks.
Which of these is NOT a characteristic of SSD?
ASingle pass detection.
BUses region proposal network.
CMulti-scale feature maps.
DDefault boxes for predictions.
Explain how SSD detects objects in an image and why it is faster than two-stage detectors.
Think about how SSD predicts boxes and classes all at once.
You got /4 concepts.
    Describe the purpose of default boxes and multi-scale feature maps in SSD.
    Consider how SSD handles small and large objects.
    You got /4 concepts.