码迷,mamicode.com
首页 > 其他好文 > 详细

极验验证码缺口图片计算缺口位置

时间:2019-12-04 12:58:39      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:nbsp   image   位置   pen   imp   apt   验证   col   坐标   

对两张图片的像素点做比较,当不同的时候返回当前点位

from PIL import Image

img = Image.open(captcha1.png)
img2 = Image.open(captcha2.png)
print(img.size)#(258, 159)
print(img2.size)#(258, 159)
for i in range(60,img.size[0]):#刨除拖动位置的坐标
    for j in range(img.size[1]):
        if abs(img.load()[i,j][0]-img2.load()[i,j][0]) >60 and abs(img.load()[i,j][1]-img2.load()[i,j][1]) >60 and abs(img.load()[i,j][2]-img2.load()[i,j][2]) >60:
            print(i,j)
            x = i#需要偏移的距离
            break

 

极验验证码缺口图片计算缺口位置

标签:nbsp   image   位置   pen   imp   apt   验证   col   坐标   

原文地址:https://www.cnblogs.com/blackball9/p/11982167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!