0
0
Computer Visionml~20 mins

Hand and face landmark detection in Computer Vision - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Landmark Detection Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding landmark detection outputs

When a hand landmark detection model processes an image, what does its output typically represent?

ACoordinates of key points on the hand such as fingertips and joints
BA binary mask highlighting the hand region
CA classification label indicating hand gestures
DThe raw pixel values of the hand area
Attempts:
2 left
💡 Hint

Think about what 'landmark' means in this context.

Predict Output
intermediate
1:30remaining
Output shape of face landmark detection model

Given a face landmark detection model that detects 468 points per face, what is the shape of the output tensor for a batch of 5 images?

Computer Vision
batch_size = 5
num_landmarks = 468
output_shape = (batch_size, num_landmarks, 3)  # x, y, z coordinates
A(5, 3, 468)
B(5, 468, 3)
C(3, 468, 5)
D(468, 5, 3)
Attempts:
2 left
💡 Hint

Consider batch size first, then landmarks, then coordinates.

Model Choice
advanced
2:00remaining
Choosing a model for real-time hand landmark detection

You want to build a mobile app that detects hand landmarks in real-time video. Which model architecture is best suited?

AA deep transformer model with self-attention layers
BA large ResNet-based model with many layers for high accuracy
CA lightweight MobileNet-based model optimized for speed
DA simple linear regression model
Attempts:
2 left
💡 Hint

Think about balancing speed and accuracy on mobile devices.

Metrics
advanced
2:00remaining
Evaluating landmark detection accuracy

Which metric best measures the accuracy of predicted hand landmarks compared to ground truth points?

APrecision and recall of hand detection bounding boxes
BClassification accuracy of hand gesture labels
CConfusion matrix of detected vs missed landmarks
DMean Squared Error (MSE) between predicted and true landmark coordinates
Attempts:
2 left
💡 Hint

Focus on how close predicted points are to actual points.

🔧 Debug
expert
2:30remaining
Debugging inconsistent landmark predictions

You notice that your face landmark detection model sometimes predicts landmarks outside the face region. What is the most likely cause?

AThe input images are not normalized or preprocessed consistently
BThe model architecture is too deep
CThe optimizer learning rate is too low
DThe batch size during training was too large
Attempts:
2 left
💡 Hint

Think about input data quality and consistency.