OpenCV:删除图像的背景

时间:2018-01-20 12:55:56

标签: python image opencv image-processing

我使用Opencv和python来检测形状然后裁剪它们。我已经成功地做到了,但是现在我正在尝试拍摄裁剪的图像并删除它们的背景。

图像内部有一个圆圈,周围是灰色。 ( 它可以是灰色的,也可以是多种颜色 )。

Croped Image

如何删除圆形边框周围的颜色(黑色) - 我们可以将灰色转换为黑色 - 作为边框颜色,甚至可以将其删除并使其透明。

结果图片应仅包含圆圈。

1 个答案:

答案 0 :(得分:4)

至少在此图片中,无需检测圆圈使用houghCircle)。我认为threshold它和find the inner contour,然后make maskdo bitwise-op就行了!

我的步骤:

  

(1)读取并转换为灰色

     

(2)findContours

     

(3)找到较小的轮廓,创建一个面具

     

(4)bitwise_andcrop

这是我的结果:

enter image description here

#!/usr/bin/python3
# 2018.01.20 20:58:12 CST
# 2018.01.20 21:24:29 CST
import cv2
import numpy as np

## (1) Read
img = cv2.imread("img04.png")
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

## (2) Threshold
th, threshed = cv2.threshold(gray, 127, 255, cv2.THRESH_BINARY_INV|cv2.THRESH_OTSU)

## (3) Find the min-area contour
_cnts = cv2.findContours(threshed, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)[-2]
cnts = sorted(cnts, key=cv2.contourArea)
for cnt in cnts:
    if cv2.contourArea(cnt) > 100:
        break

## (4) Create mask and do bitwise-op
mask = np.zeros(img.shape[:2],np.uint8)
cv2.drawContours(mask, [cnt],-1, 255, -1)
dst = cv2.bitwise_and(img, img, mask=mask)

## Save it
cv2.imwrite("dst.png", dst)