using for loop to install conda package

This commit is contained in:
ton
2023-04-16 11:03:27 +07:00
parent 49da9f29c1
commit 0c2b34d6f8
12168 changed files with 2656238 additions and 1 deletions

View File

@@ -0,0 +1,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]: ...