2021-09-09 OpenCV (python)学习笔记(四)

OpenCV 边缘检测之图像增强

图像增强代码示例:

import cv2
#读取图片
filename = C:\Users\username\Desktop\opencv
img = cv2.imread(filname + 'picture.jpg',0) #读取图像的灰度图
row, column = img.shape
img_f = np.copy(img)
gradient = np.zeros((row,column)) #初始化gradient

# 2. 计算图像梯度。首先要对读取的图像进行数据变换,因为使用了numpy对梯度进行数值计算,所以要使用img.astype('float')进行数据格式变换
img = img.astype('float')
for x in range(row - 1): #之前没循环
    for y in range(column - 1):
    #对img使用图像梯度公式,计算得到的梯度把可以将明暗边界提出来
        gx = abs(img[x + 1, y] - img[x, y])
        gy = abs(img[x, y + 1] - img[x, y])
        gradient[x, y] = gx + gy

#对img的hi度图像进行增强
share = img_f + gradient

sharp = np.where(sharp > 255, 255, sharp)
sharp = np.where(sharp < 0, 0, sharp)
    
# 数据类型变换
gradient = gradient.astype('uint8')
sharp = sharp.astype('uint8')

# 保存图像
filepath = C:\Users\username\Desktop\opencv
cv2.imwrite(filepath + 'out/gradient.png', gradient)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值