Spaces:
Runtime error
Runtime error
from ultralytics import YOLO | |
def detect_plantation(frame): | |
model = YOLO('models/yolov8n.pt') | |
results = model(frame) | |
# Implement detection logic specific to plantation | |
return results | |