如何找到最右边的黑色像素的位置

时间:2016-07-18 15:23:42

标签: python numpy image-processing python-imaging-library scikit-image

黑白图像,显示画面内的笑脸。

smiling face

我想要的是找出笑脸最右边的位置。 (在这种情况下,黑色应位于图像的“184,91”附近)

通过使用下面我希望列出图像中的颜色,然后看看可以进一步寻找什么。

from PIL import Image
im = Image.open("face.jpg")
print im.convert('RGB').getcolors() # or print im.getcolors()

然而它返回None,我被困住了。

我怎样才能获得最正确的面孔?

2 个答案:

答案 0 :(得分:2)

这是我提出的解决方案:

import numpy as np
from skimage import io

img = io.imread('https://i.stack.imgur.com/sbqcu.jpg', as_grey=True)

left, right, top, bottom = 25, 25, 20, 20
crop = img[top: -bottom, left:- right]
threshold = .85
smiley = crop < threshold

rows, cols = np.nonzero(smiley)
rightmost = cols.max()
indices = np.nonzero(cols==rightmost)

for r, c, in zip(rows[indices], cols[indices]):
    print('(%d, %d)' % (r + top, c + left))

上面的代码产生:

(87, 184)
(88, 184)
(89, 184)
(90, 184)
(91, 184)
(92, 184)
(93, 184)
(94, 184)
(95, 184)
(96, 184)
(97, 184)
(98, 184)

这与笑脸最右边有一条垂直直线的事实是一致的。

必须仔细选择阈值以避免检测噪声像素:

threshold = .95
io.imshow(crop < threshold)

smiley

答案 1 :(得分:0)

作为间接方式,也许我可以: 1.取下框架 2.修剪白色

剩下的是核心图像本身。如果核心图像是规则图案,图像的尺寸可以告诉坐标。

from PIL import Image

img = Image.open("c:\\smile.jpg")
img2 = img.crop((30, 26, 218, 165))  # remove the frame
img2.save("c:\\cropped-smile.jpg")

Trim whitespace using PIL教授如何删除圆圈白色部分。

def trim(im):
    bg = Image.new(im.mode, im.size, im.getpixel((0,0)))
    diff = ImageChops.difference(im, bg)
    diff = ImageChops.add(diff, diff, 2.0, -100)
    bbox = diff.getbbox()
    if bbox:
        return im.crop(bbox)

im = Image.open("c:\\cropped-smile.jpg")
im = trim(im)
im.save("c:\\final-smile.jpg")

现在获取核心图像的尺寸。

im = Image.open("c:\\final-sbqcu.jpg")
w, h = im.size

我得到了131,132。所以131,66应该是图像中最正确的点。