Skip to content

Commit

Permalink
prepare new detection model
Browse files Browse the repository at this point in the history
  • Loading branch information
zyddnys committed Jan 20, 2024
1 parent 0d43cf4 commit f622f24
Show file tree
Hide file tree
Showing 2 changed files with 598 additions and 0 deletions.
2 changes: 2 additions & 0 deletions manga_translator/detection/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import numpy as np

from .default import DefaultDetector
from .dbnet_convnext import DBConvNextDetector
from .ctd import ComicTextDetector
from .craft import CRAFTDetector
from .none import NoneDetector
from .common import CommonDetector, OfflineDetector

DETECTORS = {
'default': DefaultDetector,
'dbconvnext': DBConvNextDetector,
'ctd': ComicTextDetector,
'craft': CRAFTDetector,
'none': NoneDetector,
Expand Down
Loading

0 comments on commit f622f24

Please sign in to comment.