1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
from typing import Any, Dict, Iterator, List, Literal, Optional, Union, overload
import numpy as np
from .core.imopen import imopen as imopen
from .core.v3_plugin_api import ImageProperties
from .typing import ArrayLike, ImageResource
def imread(
uri: ImageResource,
*,
index: Optional[int] = 0,
plugin: str = None,
extension: str = None,
format_hint: str = None,
**kwargs,
) -> np.ndarray: ...
def imiter(
uri: ImageResource,
*,
plugin: str = None,
extension: str = None,
format_hint: str = None,
**kwargs,
) -> Iterator[np.ndarray]: ...
@overload
def imwrite(
uri: Literal["<bytes>"],
image: Union[ArrayLike, List[ArrayLike]],
*,
plugin: str = None,
extension: str = None,
format_hint: str = None,
**kwargs,
) -> bytes: ...
@overload
def imwrite(
uri: ImageResource,
image: Union[ArrayLike, List[ArrayLike]],
*,
plugin: str = None,
extension: str = None,
format_hint: str = None,
**kwargs,
) -> None: ...
def improps(
uri,
*,
index: Optional[int] = 0,
plugin: str = None,
extension: str = None,
**kwargs,
) -> ImageProperties: ...
def immeta(
uri,
*,
index: Optional[int] = 0,
plugin: str = None,
extension: str = None,
exclude_applied: bool = True,
**kwargs,
) -> Dict[str, Any]: ...
|