1. 程式人生 > >day 10 形態學處理 膨脹

day 10 形態學處理 膨脹

nump key .com nbsp logs element 形態學處理 waitkey lips

#-*- coding:utf-8 -*-

#1.導入包
import cv2
import numpy as np

#2.導入圖片
img = cv2.imread(home.jpg,0)

#3.設置卷積核 5x5矩形卷積核
kernel = np.ones((5,5),np.uint8)
print(kernel)

kernel2 = cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(5,5))
print(kernel2)


#4.膨脹操作
dilation = cv2.dilate(img,kernel,iterations=1)
                      
#第1參數:原圖片 #第2參數:卷積核 #第3參數:只要5x5卷積核內中心像素有一個1,那就是1 #5.顯示圖片,並關閉 cv2.imshow(dilation,dilation) cv2.waitKey(0) cv2.destroyAllWindows()

    

[[1 1 1 1 1]
 [1 1 1 1 1]
 [1 1 1 1 1]
 [1 1 1 1 1]
 [1 1 1 1 1]]

[[0 0 1 0 0]
 [1 1 1 1 1]
 [1 1 1 1 1]
 [1 1 1 1 1]
 [0 0 
1 0 0]]

  技術分享圖片

day 10 形態學處理 膨脹