mirror of
https://github.com/wassname/scikit-image.git
synced 2026-08-11 11:25:30 +08:00
Fix shape format of arrays in doc strings
This commit is contained in:
@@ -16,7 +16,7 @@ def threshold_adaptive(image, block_size, method='gaussian', offset=0,
|
||||
|
||||
Parameters
|
||||
----------
|
||||
image : NxM ndarray
|
||||
image : (N, M) ndarray
|
||||
Input image.
|
||||
block_size : int
|
||||
Uneven size of pixel neighborhood which is used to calculate the
|
||||
@@ -45,7 +45,7 @@ def threshold_adaptive(image, block_size, method='gaussian', offset=0,
|
||||
|
||||
Returns
|
||||
-------
|
||||
threshold : NxM ndarray
|
||||
threshold : (N, M) ndarray
|
||||
Thresholded binary image
|
||||
|
||||
References
|
||||
|
||||
@@ -100,7 +100,7 @@ def iradon(radon_image, theta=None, output_size=None,
|
||||
the image corresponds to a projection along a different angle.
|
||||
theta : array_like, dtype=float, optional
|
||||
Reconstruction angles (in degrees). Default: m angles evenly spaced
|
||||
between 0 and 180 (if the shape of `radon_image` is nxm)
|
||||
between 0 and 180 (if the shape of `radon_image` is (N, M)).
|
||||
output_size : int
|
||||
Number of rows and columns in the reconstruction.
|
||||
filter : str, optional (default ramp)
|
||||
|
||||
Reference in New Issue
Block a user