A lightweight YOLO26-nano model fine-tuned on
Manga109-s for detecting
panels and
text bubbles in manga pages. Designed for on-device Android inference via TFLite/LiteRT.
1from ultralytics import YOLO
2
3model = YOLO("manga_panel_detector_fp32.pt")
4results = model.predict("manga_page.jpg", conf=0.25)
5
6for box in results[0].boxes:
7 cls = int(box.cls) # 0=panel, 1=text
8 conf = float(box.conf)
9 x1, y1, x2, y2 = box.xyxy[0].tolist()
10 label = "panel" if cls == 0 else "text"
11 print(f"{label} ({conf:.2f}): [{x1:.0f}, {y1:.0f}, {x2:.0f}, {y2:.0f}]")
1@misc{leoxs22_manga_panel_detector_2026,
2 author={Leandro Narosky},
3 title={{Manga Panel and Text Detector (YOLO26-nano)}},
4 year={2026},
5 publisher={Hugging Face},
6 url={https://huggingface.co/leoxs22/manga-panel-detector-yolo26n}
7}
This model was trained on Manga109-s. Please cite:
1@article{multimedia_aizawa_2020,
2 author={Kiyoharu Aizawa and Azuma Fujimoto and Atsushi Otsubo and Toru Ogawa and Yusuke Matsui and Koki Tsubota and Hikaru Ikuta},
3 title={Building a Manga Dataset ``Manga109'' with Annotations for Multimedia Applications},
4 journal={IEEE MultiMedia},
5 volume={27},
6 number={2},
7 pages={8--18},
8 doi={10.1109/mmul.2020.2987895},
9 year={2020}
10}
11
12@article{mtap_matsui_2017,
13 author={Yusuke Matsui and Kota Ito and Yuji Aramaki and Azuma Fujimoto and Toru Ogawa and Toshihiko Yamasaki and Kiyoharu Aizawa},
14 title={Sketch-based Manga Retrieval using Manga109 Dataset},
15 journal={Multimedia Tools and Applications},
16 volume={76},
17 number={20},
18 pages={21811--21838},
19 doi={10.1007/s11042-016-4020-z},
20 year={2017}
21}
This model is released under the
Apache 2.0 License.
The training data (Manga109-s) has its own
license terms. Per condition 5 of the Manga109-s license, results obtained from machine learning experiments (including pre-trained models) may be used for commercial purposes, provided that the use of the dataset is clearly indicated.