0
0
Computer Visionml~20 mins

What computer vision encompasses - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Computer Vision Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Core tasks in computer vision

Which of the following is NOT a common task in computer vision?

ASpeech recognition
BObject detection
CImage classification
DImage segmentation
Attempts:
2 left
💡 Hint

Think about what computer vision deals with: images and videos, not sounds.

🧠 Conceptual
intermediate
2:00remaining
Applications of computer vision

Which of these is a real-world application of computer vision?

ATranslating languages in real-time
BGenerating music automatically
CPredicting stock market trends
DDetecting faces in photos
Attempts:
2 left
💡 Hint

Computer vision helps computers understand images and videos.

Model Choice
advanced
2:30remaining
Choosing a model for image classification

You want to build a system that recognizes different types of animals in photos. Which model type is best suited for this task?

ARecurrent Neural Network (RNN)
BK-Means Clustering
CConvolutional Neural Network (CNN)
DLinear Regression
Attempts:
2 left
💡 Hint

Think about which model type is designed to process images effectively.

Metrics
advanced
2:30remaining
Evaluating object detection models

Which metric is commonly used to evaluate the accuracy of object detection models?

AMean Squared Error (MSE)
BIntersection over Union (IoU)
CBLEU Score
DPerplexity
Attempts:
2 left
💡 Hint

This metric measures how well the predicted bounding box overlaps with the true bounding box.

🔧 Debug
expert
3:00remaining
Debugging image preprocessing code

What error will this Python code raise when preprocessing images for a CNN?

import numpy as np
from PIL import Image

img = Image.open('cat.jpg')
img_array = np.array(img)
img_array = img_array / 255.0
img_array = img_array.reshape((224, 224, 3))
AValueError due to incorrect reshape size
BTypeError because division by 255 is invalid
CFileNotFoundError because 'cat.jpg' does not exist
DNo error, code runs successfully
Attempts:
2 left
💡 Hint

Check the original image size and the reshape dimensions.