gpt4 book ai didi

python - 使用图像处理来清除小文本图像

转载 作者:行者123 更新时间:2023-12-02 16:59:20 25 4
gpt4 key购买 nike

这是我的输入图像:

我想清除它以便阅读小文本。问题在于图像的左下方有噪点。如何减少图像的噪点?

最佳答案

Before and after denoting with OpenCV

import numpy as np
import cv2
from matplotlib import pyplot as plt

if __name__ == '__main__':
img = cv2.imread('img.jpg')
dst = cv2.fastNlMeansDenoisingColored(img, None, 10, 10, 7, 21)

plt.subplot(121),plt.imshow(img)
plt.subplot(122),plt.imshow(dst)
plt.show()
请务必查看更多文档 here

关于python - 使用图像处理来清除小文本图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62898357/

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