gpt4 book ai didi

python - 在python中检测像素化图像

转载 作者:太空宇宙 更新时间:2023-11-03 11:08:32 25 4
gpt4 key购买 nike

我正在尝试确定图像是否为方形(像素化)。

我听说过使用 numpy 或 scipy 进行二维傅里叶变换,但它有点复杂。

目标是确定由于像这样的不良压缩而导致的平方区域的数量(img a):

最佳答案

我不知道这是否可行 - 但是,您可以尝试获取像素周围的最近邻居。像素化方 block 将是一个区域周围 RGB 值的可见跳跃。

你可以为图像中的每个像素找到最近的邻居

def get_neighbors(x,y, img):
ops = [-1, 0, +1]
pixels = []
for opy in ops:
for opx in ops:
try:
pixels.append(img[x+opx][y+opy])
except:
pass
return pixels

这将为您提供源图像区域中最近的像素。

要使用它,你需要做类似的事情

def detect_pixellated(fp):
img = misc.imread(fp)
width, height = np.shape(img)[0:2]

# Pixel change to detect edge
threshold = 20

for x in range(width):
for y in range(height):
neighbors = get_neighbors(x, y, img)

# Neighbors come in this order:
# 6 7 8
# 3 4 5
# 0 1 2

center = neighbor[4]
del neighbor[4]

for neighbor in neighbors:
diffs = map(operator.abs, map(operator.sub, neighbor, center))
possibleEdge = all(diff > threshold for diff in diffs)

经过深思熟虑,使用 OpenCV 并进行边缘检测并获取轮廓大小。这会更容易、更可靠。

关于python - 在python中检测像素化图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12942365/

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