當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python SciPy datasets.ascent用法及代碼示例


本文簡要介紹 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()
scipy-datasets-ascent-1.png

相關用法


注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.datasets.ascent。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。