Files
my-botty-tools/botty_next/vision/__init__.py

7 lines
297 B
Python

"""Vision helpers and detectors."""
from botty_next.vision.ocr import OcrResult, preprocess_for_ocr, run_tesseract_ocr
from botty_next.vision.template_matching import MatchResult, match_template
__all__ = ["MatchResult", "OcrResult", "match_template", "preprocess_for_ocr", "run_tesseract_ocr"]