
数字图像处理
一只荣
武汉大学在校生
展开
-
python图像处理之直方图均衡化
def histeq(img): h=img.shape[0] img_gray_1D=img.flatten() img_gray_len=img_gray_1D.shape[0] img_gray_int=(img_gray_1D+0.5).astype(np.uint8) psk=np.zeros(256) for i in range(...原创 2019-11-01 17:35:40 · 376 阅读 · 0 评论 -
python opencv 图像拼接
代码:import imutilsimport cv2import numpy as np# stitch the images together to create a panoramadef detectAndDescribe(image): # convert the image to grayscale # gray = cv2.cvtCo...原创 2018-11-06 19:12:06 · 931 阅读 · 0 评论