Spaces:
Runtime error
Runtime error
File size: 130 Bytes
6b8e2b8 |
1 2 3 4 5 6 |
import random
def detect_shadow_coverage(image_path):
shadow_percent = random.randint(25, 40)
return shadow_percent > 30
|