surveillance / services /shadow_detection.py
SuriRaja's picture
Create shadow_detection.py
d499e9b
raw
history blame
129 Bytes
import random
def detect_shadow_coverage(image_path):
shadow_percent = random.randint(25, 40)
return shadow_percent > 30