Fixed database typo and removed unnecessary class identifier.
This commit is contained in:
parent
00ad49a143
commit
45fb349a7d
5098 changed files with 952558 additions and 85 deletions
60
venv/Lib/site-packages/skimage/morphology/__init__.py
Normal file
60
venv/Lib/site-packages/skimage/morphology/__init__.py
Normal file
|
@ -0,0 +1,60 @@
|
|||
from .binary import (binary_erosion, binary_dilation, binary_opening,
|
||||
binary_closing)
|
||||
from .grey import (erosion, dilation, opening, closing, white_tophat,
|
||||
black_tophat)
|
||||
from .selem import (square, rectangle, diamond, disk, cube, octahedron, ball,
|
||||
octagon, star)
|
||||
from ..measure._label import label
|
||||
from ._skeletonize import skeletonize, medial_axis, thin, skeletonize_3d
|
||||
from .convex_hull import convex_hull_image, convex_hull_object
|
||||
from .greyreconstruct import reconstruction
|
||||
from .misc import remove_small_objects, remove_small_holes
|
||||
from .extrema import h_minima, h_maxima, local_maxima, local_minima
|
||||
from ._flood_fill import flood, flood_fill
|
||||
from .max_tree import (max_tree, area_opening, area_closing,
|
||||
diameter_opening, diameter_closing,
|
||||
max_tree_local_maxima)
|
||||
from ._deprecated import watershed
|
||||
|
||||
__all__ = ['binary_erosion',
|
||||
'binary_dilation',
|
||||
'binary_opening',
|
||||
'binary_closing',
|
||||
'erosion',
|
||||
'dilation',
|
||||
'opening',
|
||||
'closing',
|
||||
'white_tophat',
|
||||
'black_tophat',
|
||||
'square',
|
||||
'rectangle',
|
||||
'diamond',
|
||||
'disk',
|
||||
'cube',
|
||||
'octahedron',
|
||||
'ball',
|
||||
'octagon',
|
||||
'star',
|
||||
'label',
|
||||
'watershed',
|
||||
'skeletonize',
|
||||
'skeletonize_3d',
|
||||
'thin',
|
||||
'medial_axis',
|
||||
'convex_hull_image',
|
||||
'convex_hull_object',
|
||||
'reconstruction',
|
||||
'remove_small_objects',
|
||||
'remove_small_holes',
|
||||
'h_minima',
|
||||
'h_maxima',
|
||||
'local_maxima',
|
||||
'local_minima',
|
||||
'flood',
|
||||
'flood_fill',
|
||||
'max_tree',
|
||||
'area_opening',
|
||||
'area_closing',
|
||||
'diameter_opening',
|
||||
'diameter_closing',
|
||||
'max_tree_local_maxima']
|
Loading…
Add table
Add a link
Reference in a new issue