mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 04:44:43 +08:00
49 lines
1.6 KiB
Python
49 lines
1.6 KiB
Python
from .binary import (binary_erosion, binary_dilation, binary_opening,
|
|
binary_closing)
|
|
from .grey import (erosion, dilation, opening, closing, white_tophat,
|
|
black_tophat, greyscale_erode, greyscale_dilate,
|
|
greyscale_open, greyscale_close, greyscale_white_top_hat,
|
|
greyscale_black_top_hat)
|
|
from .selem import (square, rectangle, diamond, disk, cube, octahedron, ball,
|
|
octagon, star)
|
|
from .ccomp import label
|
|
from .watershed import watershed
|
|
from ._skeletonize import skeletonize, medial_axis
|
|
from .convex_hull import convex_hull_image, convex_hull_object
|
|
from .greyreconstruct import reconstruction
|
|
from .misc import remove_small_objects
|
|
|
|
|
|
__all__ = ['binary_erosion',
|
|
'binary_dilation',
|
|
'binary_opening',
|
|
'binary_closing',
|
|
'erosion',
|
|
'dilation',
|
|
'opening',
|
|
'closing',
|
|
'white_tophat',
|
|
'black_tophat',
|
|
'greyscale_erode',
|
|
'greyscale_dilate',
|
|
'greyscale_open',
|
|
'greyscale_close',
|
|
'greyscale_white_top_hat',
|
|
'greyscale_black_top_hat',
|
|
'square',
|
|
'rectangle',
|
|
'diamond',
|
|
'disk',
|
|
'cube',
|
|
'octahedron',
|
|
'ball',
|
|
'octagon',
|
|
'label',
|
|
'watershed',
|
|
'skeletonize',
|
|
'medial_axis',
|
|
'convex_hull_image',
|
|
'convex_hull_object',
|
|
'reconstruction',
|
|
'remove_small_objects']
|