FACE MASK DETECTION (PRODUCT)
AI model for face mask detection, identifying mask presence with accuracy.
Description
Public Health Compliance
A high-accuracy Real-time Computer Vision system designed to detect the presence of face masks. Trained on a diverse dataset of over 7,500 images, it handles various lighting conditions, angles, and facial obstructions.
Technical Highlights
- Model Base: MobileNetV2 for extreme efficiency (Transfer Learning approach).
- Classes: Detects "With Mask" and "Without Mask" with >98% accuracy on validation sets.
- Real-time Inference: Smooth performance on standard webcams and IP cameras.
Best Use Cases
Smart building entrances, hospital compliance monitoring, and automated retail safety gates.
Live Deployment Sandbox
Live Deployment Sandbox
Online
API Integration Guide
curl --location 'https://api.aimodelplace.com/api/v1/predict' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--form 'model_slug="face-mask-detection_11"' \
--form 'file=@"/path/to/your/image.png"'
Successful response format (JSON):
{
"success": true,
"confidence": 0.999,
"predicted_label": "No Mask"
}
For more detailed parameters and SDK examples, visit our Full API Documentation.
Post Your Comments
Login to comment