Challenge - 5 Problems
Aerial Object Detection Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Understanding challenges in aerial object detection
Which of the following is the main challenge when detecting objects from aerial drone images?
Attempts:
2 left
💡 Hint
Think about how objects look from high above and how that affects detection.
✗ Incorrect
From aerial views, objects often appear very small and close together, which makes it difficult for models to separate and identify them accurately.
❓ Predict Output
intermediate2:00remaining
Output of bounding box format conversion
What is the output of this Python code that converts bounding boxes from (x_center, y_center, width, height) to (x_min, y_min, x_max, y_max)?
Drone Programming
def convert_bbox(cx, cy, w, h): x_min = cx - w / 2 y_min = cy - h / 2 x_max = cx + w / 2 y_max = cy + h / 2 return (x_min, y_min, x_max, y_max) print(convert_bbox(50, 50, 20, 10))
Attempts:
2 left
💡 Hint
Remember the center minus half width is the minimum x coordinate.
✗ Incorrect
The function calculates the corners by subtracting and adding half the width and height from the center coordinates.
❓ Model Choice
advanced2:00remaining
Best model architecture for small object detection in aerial images
Which model architecture is best suited for detecting small objects in aerial drone images?
Attempts:
2 left
💡 Hint
Look for a model designed for object detection with features to handle small objects.
✗ Incorrect
YOLOv5 with multi-scale features and attention helps detect small objects by focusing on different image scales and important regions.
❓ Hyperparameter
advanced2:00remaining
Choosing the right anchor box sizes for aerial object detection
When training an object detection model on aerial images with mostly small vehicles, which anchor box sizes should you choose?
Attempts:
2 left
💡 Hint
Anchor boxes should match the typical object sizes to help the model learn better.
✗ Incorrect
Choosing anchor boxes close to the actual object sizes improves detection accuracy by providing better initial guesses.
❓ Metrics
expert2:00remaining
Interpreting mAP in aerial object detection evaluation
If a model trained for aerial object detection achieves a mean Average Precision (mAP) of 0.75 at IoU threshold 0.5, what does this mean?
Attempts:
2 left
💡 Hint
mAP combines precision and recall considering bounding box overlap.
✗ Incorrect
mAP at IoU 0.5 means the model's bounding boxes overlap ground truth by at least 50%, and on average, it detects 75% of objects correctly.