0
0
Computer Visionml~20 mins

3D object detection in Computer Vision - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
3D Object Detection Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding 3D Bounding Boxes
In 3D object detection, what does a 3D bounding box typically represent?
AA box that encloses the object in 3D space with position, size, and orientation
BA 2D rectangle drawn around the object in an image
CA point cloud representing the object's surface
DA heatmap showing object presence probability
Attempts:
2 left
💡 Hint
Think about how to describe an object’s location and shape in three dimensions.
Model Choice
intermediate
2:00remaining
Choosing a Model for 3D Object Detection from Point Clouds
Which model architecture is best suited for detecting objects directly from raw 3D point cloud data?
ARecurrent Neural Network (RNN) for sequential data
BPointNet, which processes unordered point sets directly
CConvolutional Neural Network (CNN) designed for 2D images
DTransformer model for natural language processing
Attempts:
2 left
💡 Hint
Consider which model can handle unordered 3D points without converting to images.
Predict Output
advanced
2:00remaining
Output Shape of 3D Object Detection Network
Given a 3D object detection network that outputs a tensor of shape (batch_size, num_anchors, 7), what does the last dimension of size 7 represent?
AClass probabilities for 7 object categories
BCoordinates (x, y), width, height, depth, and confidence score
CRGB color channels and depth value
DCoordinates (x, y, z), dimensions (w, h, l), and rotation angle
Attempts:
2 left
💡 Hint
Think about what parameters define a 3D bounding box and its orientation.
Metrics
advanced
2:00remaining
Evaluating 3D Object Detection Performance
Which metric is commonly used to evaluate the accuracy of 3D object detection models?
A3D Intersection over Union (IoU) between predicted and ground truth boxes
BMean Squared Error (MSE) of pixel intensities
CBLEU score for language translation
DConfusion matrix for binary classification
Attempts:
2 left
💡 Hint
Consider how to measure overlap between predicted and true 3D boxes.
🔧 Debug
expert
3:00remaining
Debugging a 3D Object Detection Model with Poor Orientation Predictions
A 3D object detection model predicts bounding boxes with accurate positions and sizes but consistently wrong rotation angles. What is the most likely cause?
AThe model uses 2D convolution layers instead of 3D convolutions
BThe input point cloud is missing color information
CThe loss function does not properly penalize rotation angle errors
DThe batch size is too large causing overfitting
Attempts:
2 left
💡 Hint
Think about what part of training controls orientation accuracy.