gpt4 book ai didi

python - 如何在 Python 中使用 open 进行轮廓检测后遮蔽图像的背景?

转载 作者:行者123 更新时间:2023-12-02 16:53:07 24 4
gpt4 key购买 nike

我已经使用 opencv python 检测到图像的轮廓,现在我应该将轮廓外的图像涂黑。有人可以帮我这样做吗?

最佳答案

鉴于您找到的轮廓,请使用 drawContours 创建一个二进制掩码,在其中填充轮廓。取决于您如何执行此操作(黑色图像、白色轮廓与白色图像、黑色轮廓),您将输入图像中的所有像素设置为 0,期望蒙版(或未蒙版)的像素。请参阅以下代码片段以获取可视化效果:

import cv2
import numpy as np

# Artificial input
input = np.uint8(128 * np.ones((200, 100, 3)))
cv2.rectangle(input, (10, 10), (40, 60), (255, 240, 172), cv2.FILLED)
cv2.circle(input, (70, 100), 20, (172, 172, 255), cv2.FILLED)

# Input to grayscale
gray = cv2.cvtColor(input, cv2.COLOR_RGB2GRAY)

# Simple binary threshold
_, gray = cv2.threshold(gray, 128, 255, cv2.THRESH_BINARY)

# Find contours
cnts, _ = cv2.findContours(gray, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)

# Generate mask
mask = np.ones(gray.shape)
mask = cv2.drawContours(mask, cnts, -1, 0, cv2.FILLED)

# Generate output
output = input.copy()
output[mask.astype(np.bool), :] = 0

cv2.imwrite("images/input.png", input)
cv2.imwrite("images/mask.png", np.uint8(255 * mask))
cv2.imwrite("images/output.png", output)

人工输入图像:

Input

处理过程中生成的掩码:

Mask

最终输出:

Output

关于python - 如何在 Python 中使用 open 进行轮廓检测后遮蔽图像的背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55592105/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com