using for loop to install conda package
This commit is contained in:
42
.CondaPkg/env/Lib/site-packages/skimage/util/__init__.py
vendored
Normal file
42
.CondaPkg/env/Lib/site-packages/skimage/util/__init__.py
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
import functools
|
||||
import warnings
|
||||
import numpy as np
|
||||
from .dtype import (img_as_float32, img_as_float64, img_as_float,
|
||||
img_as_int, img_as_uint, img_as_ubyte,
|
||||
img_as_bool, dtype_limits)
|
||||
from .shape import view_as_blocks, view_as_windows
|
||||
from .noise import random_noise
|
||||
from .apply_parallel import apply_parallel
|
||||
|
||||
from .arraycrop import crop
|
||||
from .compare import compare_images
|
||||
from ._regular_grid import regular_grid, regular_seeds
|
||||
from .unique import unique_rows
|
||||
from ._invert import invert
|
||||
from ._montage import montage
|
||||
from ._map_array import map_array
|
||||
from ._label import label_points
|
||||
|
||||
|
||||
__all__ = ['img_as_float32',
|
||||
'img_as_float64',
|
||||
'img_as_float',
|
||||
'img_as_int',
|
||||
'img_as_uint',
|
||||
'img_as_ubyte',
|
||||
'img_as_bool',
|
||||
'dtype_limits',
|
||||
'view_as_blocks',
|
||||
'view_as_windows',
|
||||
'crop',
|
||||
'compare_images',
|
||||
'map_array',
|
||||
'montage',
|
||||
'random_noise',
|
||||
'regular_grid',
|
||||
'regular_seeds',
|
||||
'apply_parallel',
|
||||
'invert',
|
||||
'unique_rows',
|
||||
'label_points',
|
||||
]
|
||||
Reference in New Issue
Block a user