opencv 在Python中移除带有水印的图像上的黑色边框

lbsnaicq  于 2022-11-24  发布在  Python
关注(0)|答案(1)|浏览(234)

我有一堆图像,我想通过删除黑色边框来均匀化。通常我使用Imagemagick的修剪功能与模糊参数,但在图像有一些水印的情况下,结果不在这里。
事实上,我正在用opencv和形态学变换做一些测试,试图识别水印和图像,然后选择更大的元素,但我真的是新的opencv和我的斗争。
水印可以无处不在,从左下角到右上角。
第一次
我更喜欢Python代码,但使用一些应用程序,如Imagemagick或类似的是受欢迎的。
实际上只使用opencv我得到这样的结果:

import copy
import cv2

from matplotlib import pyplot as plt

IMG_IN = '/data/black_borders/island.jpg'

# keep a copy of original image
original = cv2.imread(IMG_IN)

# Read the image, convert it into grayscale, and make in binary image for threshold value of 1.
img = cv2.imread(IMG_IN,0)

# use binary threshold, all pixel that are beyond 3 are made white
_, thresh_original = cv2.threshold(img, 3, 255, cv2.THRESH_BINARY)

# Now find contours in it.
thresh = copy.copy(thresh_original)
contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)

# get contours with highest height
lst_contours = []
for cnt in contours:
    ctr = cv2.boundingRect(cnt)
    lst_contours.append(ctr)
x,y,w,h = sorted(lst_contours, key=lambda coef: coef[3])[-1]

# draw contours
ctr = copy.copy(original)
cv2.rectangle(ctr, (x,y),(x+w,y+h),(0,255,0),2)

# display results with matplotlib

# original
original = original[:,:,::-1] # flip color for maptolib display
plt.subplot(221), plt.imshow(original)
plt.title('Original Image'), plt.xticks([]),plt.yticks([])

# Threshold
plt.subplot(222), plt.imshow(thresh_original, cmap='gray')
plt.title('threshold binary'), plt.xticks([]),plt.yticks([])

# selected area for future crop
ctr = ctr[:,:,::-1] # flip color for maptolib display
plt.subplot(223), plt.imshow(ctr)
plt.title('Selected area'), plt.xticks([]),plt.yticks([])

plt.show()

结果:

3zwtqj6y

3zwtqj6y1#

删除黑色边框:-

请点击以下链接(我认为是完美答案):-
Crop black edges with OpenCV
要通过指定区域来删除黑色边框,请单击此链接
How to crop an image in OpenCV using Python
您可以只提取ROI(感兴趣区域),而不是从图像中裁剪任何部分。要执行此操作,请单击此链接,
How to copy a image region using opencv in python?

删除水印:-

如果水印可能出现在图像的任何地方,则意味着您无法完全清除水印。只是您可以在该图像上应用模糊效果。它会模糊您的水印。
其链接:
https://opencv-python-tutroals.readthedocs.org/en/latest/py_tutorials/py_imgproc/py_filtering/py_filtering.html
如果水印只存在于黑色边框上的话,以上提到的方法将解决你的问题。

相关问题