真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python數(shù)學形態(tài)學的示例分析-創(chuàng)新互聯(lián)

這篇文章主要介紹了Python數(shù)學形態(tài)學的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)建站2013年開創(chuàng)至今,是專業(yè)互聯(lián)網(wǎng)技術服務公司,擁有項目成都網(wǎng)站建設、成都做網(wǎng)站網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元費縣做網(wǎng)站,已為上家服務,為費縣各地企業(yè)和個人服務,聯(lián)系電話:18980820575

具體如下:

一 原始隨機圖像

1、代碼

import numpy as np
import matplotlib.pyplot as plt
square = np.zeros((32,32))#全0數(shù)組
square[10:20,10:20]=1#把其中一部分設置為1
x, y =(32*np.random.random((2,15))).astype(np.int)#隨機位置
square[x,y]=1#把隨機位置設置為1
plt.imshow(square)#原始隨機圖像
plt.show()

2、運行結果

Python數(shù)學形態(tài)學的示例分析

二 開運算

1、代碼

import numpy as np
import matplotlib.pyplot as plt
from scipy import ndimage
square = np.zeros((32,32))#全0數(shù)組
square[10:20,10:20]=1#把其中一部分設置為1
x, y =(32*np.random.random((2,15))).astype(np.int)#隨機位置
square[x,y]=1#把隨機位置設置為1
open_square = ndimage.binary_opening(square)#開運算
plt.imshow(open_square)
plt.show()

2、運行結果

Python數(shù)學形態(tài)學的示例分析

三 膨脹運算

1、代碼

import numpy as np
import matplotlib.pyplot as plt
from scipy import ndimage
square = np.zeros((32,32))#全0數(shù)組
square[10:20,10:20]=1#把其中一部分設置為1
x, y =(32*np.random.random((2,15))).astype(np.int)#隨機位置
square[x,y]=1#把隨機位置設置為1
eroded_square = ndimage.binary_erosion(square)#膨脹運算
plt.imshow(eroded_square)
plt.show()

2、運行結果

Python數(shù)學形態(tài)學的示例分析

四 閉運算

1、代碼

import numpy as np
import matplotlib.pyplot as plt
from scipy import ndimage
square = np.zeros((32,32))#全0數(shù)組
square[10:20,10:20]=1#把其中一部分設置為1
x, y =(32*np.random.random((2,15))).astype(np.int)#隨機位置
square[x,y]=1#把隨機位置設置為1
closed_square = ndimage.binary_closing(square)#閉運算
plt.imshow(closed_square)
plt.show()

2、運行結果

Python數(shù)學形態(tài)學的示例分析

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Python數(shù)學形態(tài)學的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián)成都網(wǎng)站設計公司,關注創(chuàng)新互聯(lián)成都網(wǎng)站設計公司行業(yè)資訊頻道,更多相關知識等著你來學習!

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、網(wǎng)站設計器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


網(wǎng)站名稱:Python數(shù)學形態(tài)學的示例分析-創(chuàng)新互聯(lián)
新聞來源:http://weahome.cn/article/hsigh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部