摘要: 1 import cv2 2 import numpy as np 3 4 5 def olbp(src): 6 dst = np.zeros(src.shape,dtype=src.dtype) 7 for i in range(1,src.shape[0]-1): 8 for j in range(1,src.shape[1]-1): 9... 阅读全文
posted @ 2017-07-30 21:20 小阳明 阅读(2980) 评论(0) 推荐(0)