0
0
Computer Visionml~20 mins

CV applications (autonomous driving, medical, retail) in Computer Vision - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
CV Applications Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Key CV Tasks in Autonomous Driving
Which of the following computer vision tasks is MOST critical for detecting pedestrians and other vehicles in autonomous driving?
AImage segmentation to colorize the image for aesthetic purposes
BImage classification to label the entire scene as safe or unsafe
CObject detection to locate and identify multiple objects in the scene
DStyle transfer to change the weather conditions in images
Attempts:
2 left
💡 Hint
Think about what helps the car know where other objects are around it.
Predict Output
intermediate
2:00remaining
Output Shape of Medical Image Segmentation Model
Given a 3D medical image input of shape (1, 128, 128, 64, 1) (batch, height, width, depth, channels), what is the output shape of a 3D U-Net model that predicts a binary mask for the same volume?
Computer Vision
import tensorflow as tf
input_shape = (128, 128, 64, 1)
inputs = tf.keras.Input(shape=input_shape)
# Assume model outputs a binary mask with same spatial dims
outputs = tf.keras.layers.Conv3D(1, 1, activation='sigmoid')(inputs)
model = tf.keras.Model(inputs, outputs)
print(model.output_shape)
A(None, 128, 128, 64)
B(None, 128, 128, 64, 1)
C(None, 1, 1, 1, 1)
D(None, 128, 128, 64, 2)
Attempts:
2 left
💡 Hint
Check the Conv3D output filters and input shape.
Model Choice
advanced
2:00remaining
Best Model for Retail Shelf Product Recognition
Which model architecture is BEST suited for recognizing and localizing multiple products on a retail shelf image with many overlapping items?
AYOLOv5 for real-time object detection
BAutoencoder for image compression
CResNet50 for image classification
DGAN for image generation
Attempts:
2 left
💡 Hint
Look for a model that can find many objects quickly.
Hyperparameter
advanced
2:00remaining
Choosing Hyperparameters for Autonomous Driving Segmentation
When training a semantic segmentation model for road scene understanding in autonomous driving, which hyperparameter adjustment MOST improves the model's ability to detect small objects like traffic signs?
AIncrease batch size to 128 for faster training
BRemove dropout layers to prevent underfitting
CReduce input image resolution to speed up training
DUse a smaller learning rate and deeper network layers
Attempts:
2 left
💡 Hint
Small objects need detailed features and careful training.
Metrics
expert
2:00remaining
Evaluating Medical Image Segmentation Quality
A medical image segmentation model outputs masks for tumor regions. Which metric BEST measures the overlap quality between predicted and true tumor masks?
ADice coefficient (F1 score for masks)
BMean Squared Error between predicted and true masks
CAccuracy - percentage of correctly classified pixels
DPrecision - ratio of true positives to predicted positives
Attempts:
2 left
💡 Hint
Look for a metric that balances false positives and false negatives in segmentation.