用法:
skimage.transform.downscale_local_mean(image, factors, cval=0, clip=True)
Down-sample N维图像通过局部平均。
如果图像不能被整数因子完全整除,则用 cval 填充图像。
与插值相反skimage.transform.resize和skimage.transform.rescale此函数计算每个大小块中元素的局部平均值因子在输入图像中。
- image:ndarray
N维输入图像。
- factors:array_like
包含沿每个轴的下采样整数因子的数组。
- cval:浮点数,可选
如果图像不能被整数因子完全整除,则为常量填充值。
- clip:布尔型,可选
未使用,但保留在此处以与此模块中的其他转换保持 API 一致性。 (假设提供的 cval 也在该范围内,则局部平均值永远不会超出输入图像中的值范围。)
- image:ndarray
与输入图像具有相同维度的下采样图像。对于整数输入,输出 dtype 将为
float64
。有关详细信息,请参阅numpy.mean()
参数:
返回:
例子:
>>> a = np.arange(15).reshape(3, 5) >>> a array([[ 0, 1, 2, 3, 4], [ 5, 6, 7, 8, 9], [10, 11, 12, 13, 14]]) >>> downscale_local_mean(a, (2, 3)) array([[3.5, 4. ], [5.5, 4.5]])
相关用法
- Python skimage.transform.hough_circle_peaks用法及代码示例
- Python skimage.transform.hough_ellipse用法及代码示例
- Python skimage.transform.resize用法及代码示例
- Python skimage.transform.hough_line_peaks用法及代码示例
- Python skimage.transform.integrate用法及代码示例
- Python skimage.transform.frt2用法及代码示例
- Python skimage.transform.estimate_transform用法及代码示例
- Python skimage.transform.hough_circle用法及代码示例
- Python skimage.transform.rotate用法及代码示例
- Python skimage.transform.rescale用法及代码示例
- Python skimage.transform.ifrt2用法及代码示例
- Python skimage.transform.resize_local_mean用法及代码示例
- Python skimage.transform.hough_line用法及代码示例
- Python skimage.transform.warp_polar用法及代码示例
- Python skimage.transform.warp_coords用法及代码示例
- Python skimage.transform.warp用法及代码示例
- Python skimage.feature.graycomatrix用法及代码示例
- Python skimage.color.lab2lch用法及代码示例
- Python skimage.draw.random_shapes用法及代码示例
- Python skimage.feature.blob_doh用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.transform.downscale_local_mean。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。