Challenge - 5 Problems
3D Object Detection Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Understanding 3D Bounding Boxes
In 3D object detection, what does a 3D bounding box typically represent?
Attempts:
2 left
💡 Hint
Think about how to describe an object’s location and shape in three dimensions.
✗ Incorrect
A 3D bounding box defines the object's position, size (width, height, length), and orientation in 3D space, enclosing it tightly.
❓ Model Choice
intermediate2: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?
Attempts:
2 left
💡 Hint
Consider which model can handle unordered 3D points without converting to images.
✗ Incorrect
PointNet is designed to process unordered 3D point clouds directly, making it suitable for 3D object detection from raw point data.
❓ Predict Output
advanced2: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?
Attempts:
2 left
💡 Hint
Think about what parameters define a 3D bounding box and its orientation.
✗ Incorrect
The 7 values typically represent the 3D box center (x, y, z), size (width, height, length), and rotation angle around an axis.
❓ Metrics
advanced2:00remaining
Evaluating 3D Object Detection Performance
Which metric is commonly used to evaluate the accuracy of 3D object detection models?
Attempts:
2 left
💡 Hint
Consider how to measure overlap between predicted and true 3D boxes.
✗ Incorrect
3D IoU measures the volume overlap between predicted and ground truth bounding boxes, indicating detection accuracy.
🔧 Debug
expert3: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?
Attempts:
2 left
💡 Hint
Think about what part of training controls orientation accuracy.
✗ Incorrect
If rotation errors are high but other box parameters are good, the loss function likely does not weight rotation angle errors enough or uses an unsuitable representation.