
Detect fire, explosions, building damage, and destruction in images. Monitor insurance claims, news content, and safety incidents automatically.
The Bynn Destruction & Fire Detector identifies and locates scenes of destruction, fire, and damage in images, including building damage, vehicle accidents, fires, explosions, and disaster scenes. This model is essential for moderating disaster content and supporting insurance claims processing.
Images of destruction and disaster present unique moderation challenges. Graphic fire and accident imagery can traumatize viewers, particularly during ongoing emergencies when victims and families may encounter content depicting their losses. Yet this same imagery serves critical purposes—news reporting, insurance documentation, emergency response coordination.
The volume of disaster imagery has exploded with smartphone ubiquity. Every accident, fire, and emergency generates dozens of images shared across platforms. Moderators need to identify this content for appropriate handling—content warnings, restricted distribution, or expedited processing for insurance claims. Automated detection enables rapid response at scale impossible for human review alone.
Beyond content moderation, destruction and fire detection enables critical operational applications. CCTV systems can detect accidents and fires in real-time, triggering emergency response before human operators notice. Drone surveillance of forests can identify wildfires at their earliest stages when containment is still possible. Post-conflict drone reconnaissance can systematically map destroyed buildings for reconstruction planning, damage assessment, and humanitarian response coordination.
When provided with an image, the detector analyzes the visual content to identify destruction, fire, and damage. The model uses advanced object detection with instance segmentation, providing both the location of detected items and pixel-level masks that precisely outline each detection.
Achieving 92.6% accuracy, the model can detect a wide variety of destruction-related content including fires, explosions, building damage (from minor to complete destruction), vehicle accidents, wildfires, and civil unrest scenes.
The model employs open-vocabulary object detection technology, allowing it to recognize destruction and fire-related elements based on learned visual patterns. For each detected item, the system returns:
The API returns a structured response containing:
The model can identify the following destruction and fire-related elements:
| Metric | Value |
|---|---|
| Detection Accuracy | 92.6% |
| Average Response Time | 5000ms |
| Max File Size | 20MB |
| Supported Formats | GIF, JPEG, JPG, PNG, WebP |
Important Considerations:
This model provides probability scores, not definitive assessment of damage or emergency status.
Best Practice: Combine detection results with human review and appropriate professional assessment for optimal outcomes.
Open-vocabulary object detection with segmentation. Detects objects using text prompts.
image_urlstringRequiredURL of the image for object detection
https://example.com/image.jpgObject detection results with bounding boxes and segmentation masks
num_detectionsintegerNumber of objects detected
3detectionsarrayArray of detected objects
bboxobjectBounding box {x1, y1, x2, y2}
{"x1":100,"y1":150,"x2":300,"y2":400}scorefloatDetection confidence (0.0-1.0)
0.95class_idintegerClass index
0class_namestringDetected object class name
personmask_pngstringBase64-encoded PNG segmentation mask
data:image/png;base64,...image_sizeobjectOriginal image dimensions
{
"width": 1920,
"height": 1080
}{
"model": "destruction-fire-detection",
"image_url": "https://example.com/image.jpg"
}{
"success": true,
"data": {
"num_detections": 2,
"detections": [
{
"bbox": {
"x1": 100,
"y1": 150,
"x2": 300,
"y2": 400
},
"score": 0.95,
"class_id": 0,
"class_name": "person",
"mask_png": "data:image/png;base64,iVBORw0KGgo..."
},
{
"bbox": {
"x1": 400,
"y1": 200,
"x2": 600,
"y2": 450
},
"score": 0.87,
"class_id": 1,
"class_name": "car",
"mask_png": "data:image/png;base64,iVBORw0KGgo..."
}
],
"image_size": {
"width": 1920,
"height": 1080
}
}
}429 HTTP error code along with an error message. You should then retry with an exponential back-off strategy, meaning that you should retry after 4 seconds, then 8 seconds, then 16 seconds, etc.Integrate Destruction & Fire Detector into your application today with our easy-to-use API.