Spaces:
No application file
No application file
import cv2 | |
import cv2.typing | |
import typing | |
# Classes | |
class BarcodeDetector(cv2.GraphicalCodeDetector): | |
# Functions | |
def __init__(self) -> None: ... | |
def __init__(self, prototxt_path: str, model_path: str) -> None: ... | |
def decodeWithType(self, img: cv2.typing.MatLike, points: cv2.typing.MatLike) -> tuple[bool, typing.Sequence[str], typing.Sequence[str]]: ... | |
def decodeWithType(self, img: cv2.UMat, points: cv2.UMat) -> tuple[bool, typing.Sequence[str], typing.Sequence[str]]: ... | |
def detectAndDecodeWithType(self, img: cv2.typing.MatLike, points: cv2.typing.MatLike | None = ...) -> tuple[bool, typing.Sequence[str], typing.Sequence[str], cv2.typing.MatLike]: ... | |
def detectAndDecodeWithType(self, img: cv2.UMat, points: cv2.UMat | None = ...) -> tuple[bool, typing.Sequence[str], typing.Sequence[str], cv2.UMat]: ... | |