首页 > 开发 > PHP > 正文

PHP实现搜索相似图片

2024-05-04 23:39:04
字体:
来源:转载
供稿:网友

感知哈希的优点是简单快速,不受图片大小缩放的影响,缺点是图片的内容不能变更。实际应用中,往往采用更强大的pHash算法和SIFT算法,它们能够识别图片的变形。只要变形程度不超过25%,它们就能匹配原图。

感知哈希算法

count < =5 匹配最相似

count > 10 两张不同的图片

var_dump(ImageHash::run(‘./1.png', ‘./psb.jpg'));

 

 
  1. <?php 
  2. class ImageHash { 
  3. const FILE_NOT_FOUND = '-1'
  4. const FILE_EXTNAME_ILLEGAL = '-2'
  5. private function __construct() {} 
  6. public static function run($src1, $src2) { 
  7. static $self; 
  8. if(!$self) $self = new static
  9. if(!is_file($src1) || !is_file($src2)) exit(self::FILE_NOT_FOUND); 
  10. $hash1 = $self->getHashValue($src1); 
  11. $hash2 = $self->getHashValue($src2); 
  12. if(strlen($hash1) !== strlen($hash2)) return false
  13. $count = 0; 
  14. $len = strlen($hash1); 
  15. for($i = 0; $i < $len; $i++) if($hash1[$i] !== $hash2[$i]) $count++; 
  16. return $count <= 10 ? true : false
  17. public function getImage($file) { 
  18. $extname = pathinfo($file, PATHINFO_EXTENSION); 
  19. if(!in_array($extname, ['jpg','jpeg','png','gif'])) exit(self::FILE_EXTNAME_ILLEGAL); 
  20. $img = call_user_func('imagecreatefrom'. ( $extname == 'jpg' ? 'jpeg' : $extname ) , $file); 
  21. return $img; 
  22. public function getHashValue($file) { 
  23. $w = 8; 
  24. $h = 8; 
  25. $img = imagecreatetruecolor($w, $h); 
  26. list($src_w, $src_h) = getimagesize($file); 
  27. $src = $this->getImage($file); 
  28. imagecopyresampled($img, $src, 0, 0, 0, 0, $w, $h, $src_w, $src_h); 
  29. imagedestroy($src); 
  30. $total = 0; 
  31. $array = array(); 
  32. for( $y = 0; $y < $h; $y++) { 
  33. for ($x = 0; $x < $w; $x++) { 
  34. $gray = (imagecolorat($img, $x, $y) >> 8) & 0xFF; 
  35. if(!isset($array[$y])) $array[$y] = array(); 
  36. $array[$y][$x] = $gray; 
  37. $total += $gray; 
  38. imagedestroy($img); 
  39. $average = intval($total / ($w * $h * 2)); 
  40. $hash = ''
  41. for($y = 0; $y < $h; $y++) { 
  42. for($x = 0; $x < $w; $x++) { 
  43. $hash .= ($array[$y][$x] >= $average) ? '1' : '0'
  44. var_dump($hash); 
  45. return $hash; 
  46. var_dump(ImageHash::run('./1.png''./psb.jpg')); 

方法二:

 

 
  1. hash($f); 
  2. return $isString ? $result[0] : $result; 
  3. public function checkIsSimilarImg($imgHash, $otherImgHash){ 
  4. if (file_exists($imgHash) && file_exists($otherImgHash)){ 
  5. $imgHash = $this->run($imgHash); 
  6. $otherImgHash = $this->run($otherImgHash); 
  7. if (strlen($imgHash) !== strlen($otherImgHash)) return false
  8. $count = 0; 
  9. $len = strlen($imgHash); 
  10. for($i=0;$i<$len;$i++){ 
  11. if ($imgHash{$i} !== $otherImgHash{$i}){ 
  12. $count++; 
  13. return $count <= (5 * $rate * $rate) ? true : false
  14. public function hash($file){ 
  15. if (!file_exists($file)){ 
  16. return false
  17. $height = 8 * $this->rate; 
  18. $width = 8 * $this->rate; 
  19. $img = imagecreatetruecolor($width, $height); 
  20. list($w, $h) = getimagesize($file); 
  21. $source = $this->createImg($file); 
  22. imagecopyresampled($img, $source, 0, 0, 0, 0, $width, $height, $w, $h); 
  23. $value = $this->getHashValue($img); 
  24. imagedestroy($img); 
  25. return $value; 
  26. public function getHashValue($img){ 
  27. $width = imagesx($img); 
  28. $height = imagesy($img); 
  29. $total = 0; 
  30. $array = array(); 
  31. for ($y=0;$y<$height;$y++){ 
  32. for ($x=0;$x<$width;$x++){ 
  33. $gray = ( imagecolorat($img, $x, $y) >> 8 ) & 0xFF; 
  34. if (!is_array($array[$y])){ 
  35. $array[$y] = array(); 
  36. $array[$y][$x] = $gray; 
  37. $total += $gray; 
  38. $average = intval($total / (64 * $this->rate * $this->rate)); 
  39. $result = ''
  40. for ($y=0;$y<$height;$y++){ 
  41. for ($x=0;$x<$width;$x++){ 
  42. if ($array[$y][$x] >= $average){ 
  43. $result .= '1'
  44. }else
  45. $result .= '0'
  46. return $result; 
  47. public function createImg($file){ 
  48. $ext = $this->getFileExt($file); 
  49. if ($ext === 'jpeg') $ext = 'jpg'
  50. $img = null
  51. switch ($ext){ 
  52. case 'png' : $img = imagecreatefrompng($file);break
  53. case 'jpg' : $img = imagecreatefromjpeg($file);break
  54. case 'gif' : $img = imagecreatefromgif($file); 
  55. return $img; 
  56. public function getFileExt($file){ 
  57. $infos = explode('.', $file); 
  58. $ext = strtolower($infos[count($infos) - 1]); 
  59. return $ext; 

调用方式如下:

 

 
  1. require_once "Imghash.class.php"
  2. $instance = ImgHash::getInstance(); 
  3. $result = $instance->checkIsSimilarImg('chenyin/IMG_3214.png''chenyin/IMG_3212.JPG'); 

如果$result值为true, 则表明2个图片相似,否则不相似。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表