图像分析-回归线性算法

这段代码展示了如何使用Python的PIL库进行图像分析,通过平均哈希方法(Average Hash)来比较两张图片的相似度。代码首先定义了获取图片像素值并计算平均值的函数,然后使用汉明距离(Hamming distance)来比较两个哈希编码的差异。最后,`classfiy_aHash`函数用于判断两张图片是否在指定的精确度下相似。
摘要由CSDN通过智能技术生成
# -*- coding: utf-8 -*-


from PIL import Image
from PIL import ImageFilter
from PIL import ImageOps


# This module can classfy the image by Average Hash Method
# The Hash Method is too strict,so this moudel suitable for finding image by Thumbnail

def getCode(img, size):
    pixel = []
    for x in range(0, size[0]):
        for y in range(0, size[1]):
            pixel_value = img.getpixel((x, y))
            print pixel_value
            pixel.append(pixel_value)


    avg = sum(pixel) / len(pixel)


    cp = []


    for px in pixel:
        if px > avg:
            cp.append(1)
        else:
            cp.append(0)
    return cp




def compCode(code1, code2):
    num = 0
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值