繁体   English   中英

如何更改图像特定区域的颜色?

[英]How to change the color for a certain area of an image?

我试图覆盖 python 中段落内的图像。

这是原始图片,第一段中间有两张图片。

在此处输入图像描述

对不起大图像文件..我想将第一段中间的两个图像转换为纯白色(用纯色覆盖它们)。 我有这两张图片的坐标,但是我怎样才能改变这些特定区域的颜色呢?

这是这两个图像的 x,y 坐标:

图像_1:

left, right = 678, 925
top, bottum = 325, 373

图像_2:

left, right = 130, 1534
top, bottum = 403, 1508

请帮忙! 非常感谢!!

以下是如何在给定左上角和右下角的情况下“编辑”图像的部分。

import cv2
import numpy as np

# load image
img = cv2.imread("page.jpg");

# target boxes
boxes = [];

# first box
tl = [678, 325];
br = [925, 373];
boxes.append([tl, br]);

# second box
tl = [130, 403];
br = [1534, 1508];
boxes.append([tl, br]);

# redact with numpy slicing
for box in boxes:
    tl, br = box;
    img[tl[1]:br[1], tl[0]:br[0]] = [255, 255, 255]; # replace with white

# show image
cv2.imshow("Redacted", img);
cv2.waitKey(0);
cv2.imwrite("redacted.png", img); # save

我不认为你给的盒子是正确的。 第二个很大,第一个很小。 这是使用这些盒子的图片:

在此处输入图像描述

不过,这段代码应该适用于任何盒子,所以只需将角坐标调整到正确的位置,它就会起作用。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM