当我读到 phash 时,有四种类型:
- 基于离散余弦变换 (DCT)
- 基于 Marr-Hildreth 算子
- 基于径向方差和
- 基于块均值的图像哈希函数。
在下面的代码中你可以看到,没有 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";
?>
这个算法的类型是什么?