16 lines
318 B
Python
16 lines
318 B
Python
from .screenshot_preparation import (
|
|
crop_image,
|
|
select_area_with_ipywidget,
|
|
select_area_with_opencv,
|
|
take_screenshot,
|
|
)
|
|
from .text_detection import detect_text
|
|
|
|
__all__ = [
|
|
"crop_image",
|
|
"select_area_with_ipywidget",
|
|
"select_area_with_opencv",
|
|
"take_screenshot",
|
|
"detect_text",
|
|
]
|