Skip to main content

ResQ.Protocols

DetectionType Enum

Defines types of detections that can be identified by drone sensors and AI systems.
public enum DetectionType

Fields

Unknown 0 Unknown or unclassified detection. Person 1 Human person detected. Vehicle 2 Vehicle (car, truck, boat, etc.) detected. Fire 3 Fire or flames detected. Flood 4 Flood water or flooding detected. Debris 5 Debris or rubble detected. StructuralDamage 6 Structural damage to buildings or infrastructure. Survivor 7 Survivor detected (person in need of rescue).

Example

// Check detection type
if (detection.Type == DetectionType.Person)
{
    await DispatchRescueTeam(detection.Location);
}
else if (detection.Type == DetectionType.Fire)
{
    await AlertFireDepartment(detection.Location);
}

Remarks

These detection types represent the various objects, phenomena, and situations that the ResQ AI detection system can identify from drone sensor data including visual, thermal, and multi-spectral imagery.