-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from jorenham/stubtest/scipy.ndimage
`scipy.ndimage`
- Loading branch information
Showing
18 changed files
with
1,647 additions
and
570 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,122 @@ | ||
from . import filters, fourier, interpolation, measurements, morphology | ||
from ._filters import * | ||
from ._fourier import * | ||
from ._interpolation import * | ||
from ._filters import ( | ||
convolve, | ||
convolve1d, | ||
correlate, | ||
correlate1d, | ||
gaussian_filter, | ||
gaussian_filter1d, | ||
gaussian_gradient_magnitude, | ||
gaussian_laplace, | ||
generic_filter, | ||
generic_filter1d, | ||
generic_gradient_magnitude, | ||
generic_laplace, | ||
laplace, | ||
maximum_filter, | ||
maximum_filter1d, | ||
median_filter, | ||
minimum_filter, | ||
minimum_filter1d, | ||
percentile_filter, | ||
prewitt, | ||
rank_filter, | ||
sobel, | ||
uniform_filter, | ||
uniform_filter1d, | ||
) | ||
from ._fourier import fourier_ellipsoid, fourier_gaussian, fourier_shift, fourier_uniform | ||
from ._interpolation import ( | ||
affine_transform, | ||
geometric_transform, | ||
map_coordinates, | ||
rotate, | ||
shift, | ||
spline_filter, | ||
spline_filter1d, | ||
zoom, | ||
) | ||
from ._measurements import * | ||
from ._morphology import * | ||
|
||
__all__ = [ | ||
"affine_transform", | ||
"binary_closing", | ||
"binary_dilation", | ||
"binary_erosion", | ||
"binary_fill_holes", | ||
"binary_hit_or_miss", | ||
"binary_opening", | ||
"binary_propagation", | ||
"black_tophat", | ||
"center_of_mass", | ||
"convolve", | ||
"convolve1d", | ||
"correlate", | ||
"correlate1d", | ||
"distance_transform_bf", | ||
"distance_transform_cdt", | ||
"distance_transform_edt", | ||
"extrema", | ||
"filters", | ||
"find_objects", | ||
"fourier", | ||
"fourier_ellipsoid", | ||
"fourier_gaussian", | ||
"fourier_shift", | ||
"fourier_uniform", | ||
"gaussian_filter", | ||
"gaussian_filter1d", | ||
"gaussian_gradient_magnitude", | ||
"gaussian_laplace", | ||
"generate_binary_structure", | ||
"generic_filter", | ||
"generic_filter1d", | ||
"generic_gradient_magnitude", | ||
"generic_laplace", | ||
"geometric_transform", | ||
"grey_closing", | ||
"grey_dilation", | ||
"grey_erosion", | ||
"grey_opening", | ||
"histogram", | ||
"interpolation", | ||
"iterate_structure", | ||
"label", | ||
"labeled_comprehension", | ||
"laplace", | ||
"map_coordinates", | ||
"maximum", | ||
"maximum_filter", | ||
"maximum_filter1d", | ||
"maximum_position", | ||
"mean", | ||
"measurements", | ||
"median", | ||
"median_filter", | ||
"minimum", | ||
"minimum_filter", | ||
"minimum_filter1d", | ||
"minimum_position", | ||
"morphological_gradient", | ||
"morphological_laplace", | ||
"morphology", | ||
"percentile_filter", | ||
"prewitt", | ||
"rank_filter", | ||
"rotate", | ||
"shift", | ||
"sobel", | ||
"spline_filter", | ||
"spline_filter1d", | ||
"standard_deviation", | ||
"sum", | ||
"sum_labels", | ||
"uniform_filter", | ||
"uniform_filter1d", | ||
"value_indices", | ||
"variance", | ||
"watershed_ift", | ||
"white_tophat", | ||
"zoom", | ||
] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.