mirror of
https://github.com/trycua/computer.git
synced 2026-01-05 04:50:08 -06:00
24 lines
415 B
Python
24 lines
415 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,
|
|
IconElement,
|
|
ParseResult,
|
|
ParserMetadata,
|
|
TextElement,
|
|
UIElement,
|
|
)
|
|
|
|
__all__ = [
|
|
"OmniParser",
|
|
"BoundingBox",
|
|
"UIElement",
|
|
"IconElement",
|
|
"TextElement",
|
|
"ParserMetadata",
|
|
"ParseResult",
|
|
]
|