OpenCV 例程200篇 总目录-202205更新
两张图像直接进行加法运算后图像的颜色会改变,通过加权加法实现图像混合后图像的透明度会改变,都不能实现图像的叠加。
实现图像的叠加,需要综合运用图像分割、图像掩模、位操作和图像加法的操作。
算法原理:
通过图像分割,获得前景目标的掩模图像 mask,将前景图像叠加到背景图像的指定位置,直接进行图像拼接。
# 1.90:基于图像分割的图像融合
img1 = cv2.imread("../images/seaside02.png") # 背景图像
img2 = cv2.imread("../images/seagull01.png") # 添加的前景图像
xmin, ymin, w, h = 160, 64, 256, 256 # 矩形 ROI 位置: (ymin:ymin+h, xmin:xmin+w)
print(img1.shape, img2.shape)
levels = 3
# HSV 色彩空间图像分割
hsv = cv2.cvtColor(img2, cv2.COLOR_BGR2HSV) # 将图片转换到 HSV 色彩空间
lowerColor = np.array([100, 43, 46]) # 蓝色阈值下限: 100/43/46
upperColor = np.array([124, 255, 255]) # 蓝色阈值上限: 蓝色124/255/255
binary = cv2.inRange(hsv, lowerColor, upperColor) # 背景色彩图像分割
kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (5, 5)) # (5, 5) 结构元
dilate = cv2.dilate(cv2.bitwise_not(binary), kernel=kernel, iterations=2) # 图像膨胀
segment = cv2.bitwise_and(img2, img2, mask=dilate) # 前景分割图像,前景以外区域黑色
# 调整尺寸,将背景图片调整到 power(2,levels) 的整数倍
imgBack = cv2.resize(img1, (512, 512), interpolation=cv2.INTER_CUBIC)
front = cv2.resize(segment, (w, h)) # 将前景图像调整到指定大小 (w,h)
imgFront = np.zeros(imgBack.shape, dtype=np.uint8) # 与 imgback 尺寸相同的黑色图像
imgFront[ymin:ymin+h, xmin:xmin+w] = front
grayFront = cv2.cvtColor(imgFront, cv2.COLOR_BGR2GRAY)
_, mask0 = cv2.threshold(grayFront, 1, 255, cv2.THRESH_BINARY_INV) # 二值化处理
bg = cv2.bitwise_and(imgBack, imgBack, mask=mask0) # 生成背景,mask 遮罩区域黑色
fg = imgFront # 生成前景,前景以外区域黑色
stack = cv2.add(bg, fg) # 直接合成前景与背景
plt.figure(figsize=(9, 6))
plt.subplot(231), plt.axis('off'), plt.title("Original back")
plt.imshow(cv2.cvtColor(img1, cv2.COLOR_BGR2RGB))
plt.subplot(232), plt.axis('off'), plt.title("Original front")
plt.imshow(cv2.cvtColor(img2, cv2.COLOR_BGR2RGB))
plt.subplot(233), plt.axis('off'), plt.title("Segmentation ")
plt.imshow(cv2.cvtColor(segment, cv2.COLOR_BGR2RGB))
plt.subplot(234), plt.axis('off'), plt.title("Resized mask")
plt.imshow(mask0, "gray")
plt.subplot(235), plt.axis('off'), plt.title("Resized front")
plt.imshow(cv2.cvtColor(imgFront, cv2.COLOR_BGR2RGB))
plt.subplot(236), plt.axis('off'), plt.title("Stacked")
plt.imshow(cv2.cvtColor(stack, cv2.COLOR_BGR2RGB))
plt.tight_layout()
plt.show()
(本节完)
版权声明:
OpenCV 例程200篇 总目录-202205更新
youcans@xupt 原创作品,转载必须标注原文链接:(https://blog.csdn.net/youcans/article/details/124945141)
Copyright 2022 youcans, XUPT
Crated:2022-5-20
欢迎关注 『youcans 的 OpenCV 例程 200 篇』 系列,持续更新中
欢迎关注 『youcans 的 OpenCV学习课』 系列,持续更新中【youcans 的 OpenCV 例程200篇】185.图像金字塔之高斯金字塔
【youcans 的 OpenCV 例程200篇】186.图像金字塔之拉普拉斯金字塔
【youcans 的 OpenCV 例程200篇】187.由拉普拉斯金字塔还原图像
【youcans 的 OpenCV 例程200篇】188.基于拉普拉斯金字塔的图像融合
【youcans 的 OpenCV 例程200篇】189.基于掩模的拉普拉斯金字塔图像融合
【youcans 的 OpenCV 例程200篇】190.基于图像分割的图像融合
【youcans 的 OpenCV 例程200篇】191.基于图像分割的金字塔图像融合
【youcans 的 OpenCV 例程200篇】192.Gabor 滤波器组的形状
【youcans 的 OpenCV 例程200篇】193.基于Gabor 滤波器的特征提取
更多内容,请见:
【OpenCV 例程200篇 总目录-202206更新】