mirror of
https://github.com/Cian-H/read_aconity_layers.git
synced 2025-12-22 18:31:56 +00:00
8 lines
202 B
Python
8 lines
202 B
Python
from typing import List
|
|
|
|
from numpy import ndarray
|
|
|
|
def read_layers(folder: str) -> ndarray: ...
|
|
def read_selected_layers(file_list: List[str]) -> ndarray: ...
|
|
def read_layer(file: str) -> ndarray: ...
|