mirror of
https://github.com/trycua/lume.git
synced 2026-01-25 22:28:36 -06:00
23 lines
413 B
Python
23 lines
413 B
Python
"""SOM - Computer Vision and OCR library for detecting and analyzing UI elements."""
|
|
|
|
__version__ = "0.1.0"
|
|
|
|
from .detect import OmniParser
|
|
from .models import (
|
|
BoundingBox,
|
|
UIElement,
|
|
IconElement,
|
|
TextElement,
|
|
ParserMetadata,
|
|
ParseResult
|
|
)
|
|
|
|
__all__ = [
|
|
"OmniParser",
|
|
"BoundingBox",
|
|
"UIElement",
|
|
"IconElement",
|
|
"TextElement",
|
|
"ParserMetadata",
|
|
"ParseResult"
|
|
] |