Spaces:
Running
Running
File size: 410 Bytes
4ab551f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from pathlib import Path
import numpy as np
from ultralytics import YOLO
from sorawm.configs import WATER_MARK_DETECT_YOLO_WEIGHTS
from sorawm.utils.video_utils import VideoLoader
# based on the sora tempalte to detect the whole, and then got the icon part area.
model = YOLO(WATER_MARK_DETECT_YOLO_WEIGHTS)
model.eval()
results = model("resources/first_frame.png") # Predict on an image
print(results)
|