Views
No views yet


Panel: Comic frame borders.Text: Speech bubbles and on-page text.1from ultralytics import YOLO
2
3# Load the model
4model = YOLO('comic-panels-and-text-detect.safetensors')
5
6# Predict
7results = model.predict(source='comic_page.jpg', conf=0.25, imgsz=1280)
8
9# Show results
10results[0].show()