2

当我读到 phash 时,有四种类型:

  1. 基于离散余弦变换 (DCT)
  2. 基于 Marr-Hildreth 算子
  3. 基于径向方差和
  4. 基于块均值的图像哈希函数。

在下面的代码中你可以看到,没有 DCT 部分。只是简单地生成平均代码和哈希值。我敢肯定,它可能是基于块平均值的哈希函数。但是在那个块平均值中,算法没有任何密钥。

    <?php

    $filename = 'image.jpg';

    list($width, $height) = getimagesize($filename);


    $img = imagecreatefromjpeg($filename);

    $new_img = imagecreatetruecolor(8, 8);


    imagecopyresampled($new_img, $img, 0, 0, 0, 0, 8, 8, $width, $height);

    imagefilter($new_img, IMG_FILTER_GRAYSCALE);


    $colors = array();
    $sum = 0;


    for ($i = 0; $i < 8; $i++) {

        for ($j = 0; $j < 8; $j++) {

            $color = imagecolorat($new_img, $i, $j) & 0xff;

            $sum += $color;
            $colors[] = $color;

        }
    }

    $avg = $sum / 64;


    $hash = '';
    $curr = '';

    $count = 0;
    foreach ($colors as $color) {

        if ($color > $avg) {

            $curr .= '1';
        } else {

            $curr .= '0';
        }

        $count++;

        if (!($count % 4)) {

            $hash .= dechex(bindec($curr));

            $curr = '';
        }

    }

    print $hash . "\n";
?>

这个算法的类型是什么?

4

1 回答 1

0

对我来说,它看起来像aHash,因为它根据图像的平均颜色计算哈希。

于 2015-11-10T13:40:58.457 回答