Spaces:
Sleeping
Sleeping
Analyze the image and detect any traces of human activity. Identify and categorize them as: | |
- Picnic remains | |
- Trash or debris | |
- Footprints or worn paths | |
- Abandoned objects | |
For each detected trace, provide its type. | |
Do not use any external data sources. | |
If no traces of human activity are detected, return an empty list. | |
If the image is not clear enough to make a decision, return 'Not clear'. | |
If the image is not relevant to the task, return 'Irrelevant'. | |
Results must be consistent across multiple runs of the model on the same image. | |
Results must be JSON serializable. | |
**Output format:** | |
``` | |
{ | |
"traces": [ | |
{ | |
"type": "Picnic remains" | |
}, | |
{ | |
"type": "Trash or debris" | |
}, | |
{ | |
"type": "Footprints or worn paths" | |
}, | |
{ | |
"type": "Abandoned objects" | |
} | |
] | |
} | |
``` |