數學形態學

一 原始隨機圖像 1、代碼 import numpy as np import matplotlib.pyplot as plt square = np.zeros((32,32))#全0數組 square[10:20,10:20]=1#把其中一部分設置爲1 x, y =(32*np.random.random((2,15))).astype(np.int)#隨機位置 square[x,y]=1#
相關文章
相關標籤/搜索