import cv2
import numpy as np
img = cv2.imread('image0.jpg',1)
imgInfo = img.shape
height = imgInfo[0]
width = imgInfo[1]
gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
# newP = gray0-gray1+150
dst = np.zeros((height,width,1),np.uint8)
for i in range(0,height):
for j in range(0,width-1):
grayP0 = int(gray[i,j])
grayP1 = int(gray[i,j+1])
newP = grayP0-grayP1+150
if newP > 255:
newP = 255
if newP < 0:
newP = 0
dst[i,j] = newP
cv2.imshow('dst',dst)
cv2.waitKey(0)
相关文章
- 02-06《数字图像处理原理与实践(MATLAB版)》一书之代码Part5
- 02-06paper 108:系统学习数字图像处理之图像复原与重建
- 02-06影响Acorn for Mac图像打印质量的因素有什么?怎样处理这些因素才能得到打印效果最佳的图像?
- 02-06计算机图像处理之位置变换
- 02-06opencv学习之图像滤波预处理 #201906101646
- 02-06计算机视觉之图像特效(实现图像灰度处理等功能)(待更新。。。)
- 02-06图像处理之浮雕效果
- 02-06图像处理技术运用(1)-空域图像增强之图像基本运算和灰度变换、直方图技术
- 02-06opencv-python视频处理之白闪效果
- 02-06OpenCV(三)之图像形态学处理