摘要:
图像相加 原理:相同大小的图片的对应像素值进行相加再与255进行取模运算 img = (img1 + img2) % 255 #... 阅读全文
posted @ 2020-08-13 16:13
aJream
阅读(177)
评论(0)
推荐(0)
摘要:
变换原理 g(x,y) = 255 - f(x,y)- f(x,y) 为原图像素值- g(x,y) 为转换后的图的像素值 灰度图反... 阅读全文
posted @ 2020-08-13 15:22
aJream
阅读(86)
评论(0)
推荐(0)
摘要:
拆分 cv2.split() 拆分为单通道(灰度)图 import cv2 as cvimport numpy as npimg =... 阅读全文
posted @ 2020-08-13 00:00
aJream
阅读(59)
评论(0)
推荐(0)