本文简要介绍 python 语言中 scipy.datasets.ascent
的用法。
用法:
scipy.datasets.ascent()#
获取 8 位灰度 bit-depth、512 x 512 派生图像,以便在演示中轻松使用。
图片来源于accent-to-the-top.jpghttp://www.public-domain-image.com/people-public-domain-images-pictures/
- None:
- ascent: ndarray
方便的图像用于测试和演示
参数 ::
返回 ::
例子:
>>> import scipy.datasets >>> ascent = scipy.datasets.ascent() >>> ascent.shape (512, 512) >>> ascent.max() 255
>>> import matplotlib.pyplot as plt >>> plt.gray() >>> plt.imshow(ascent) >>> plt.show()
相关用法
- Python SciPy datasets.clear_cache用法及代码示例
- Python SciPy datasets.electrocardiogram用法及代码示例
- Python SciPy datasets.face用法及代码示例
- Python SciPy distance.sokalmichener用法及代码示例
- Python SciPy distance.dice用法及代码示例
- Python SciPy distance.braycurtis用法及代码示例
- Python SciPy dok_array.diagonal用法及代码示例
- Python SciPy distance.cityblock用法及代码示例
- Python SciPy dia_array.diagonal用法及代码示例
- Python SciPy dok_matrix.diagonal用法及代码示例
- Python SciPy dia_array.dot用法及代码示例
- Python SciPy dok_matrix.nonzero用法及代码示例
- Python SciPy distance.jensenshannon用法及代码示例
- Python SciPy distance.sokalsneath用法及代码示例
- Python SciPy dia_matrix.diagonal用法及代码示例
- Python SciPy distance.kulczynski1用法及代码示例
- Python SciPy distance.jaccard用法及代码示例
- Python SciPy distance.minkowski用法及代码示例
- Python SciPy distance.pdist用法及代码示例
- Python SciPy distance.rogerstanimoto用法及代码示例
- Python SciPy distance.canberra用法及代码示例
- Python SciPy dlti.bode用法及代码示例
- Python SciPy dia_matrix.dot用法及代码示例
- Python SciPy distance.is_valid_y用法及代码示例
- Python SciPy distance.chebyshev用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.datasets.ascent。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。