最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

PHP實(shí)現(xiàn)的簡易版圖片相似度比較

 更新時(shí)間:2015年01月07日 09:43:15   投稿:junjie  
這篇文章主要介紹了PHP實(shí)現(xiàn)的簡易版圖片相似度比較,本文直接給出實(shí)現(xiàn)代碼,使用方法請(qǐng)看代碼中的注釋,需要的朋友可以參考下

由于相似圖片搜索的php實(shí)現(xiàn)的 API 不怎么符合我的用途,所以我重新定義 API 的架構(gòu),改寫成比較簡單的函數(shù)方式,雖然還是用對(duì)象的方式包裝。

復(fù)制代碼 代碼如下:

<?php   
/**  
* 圖片相似度比較  
*  
* @version     $Id: ImageHash.php 4429 2012-04-17 13:20:31Z jax $  
* @author      jax.hu  
*  
* <code>  
*  //Sample_1  
*  $aHash = ImageHash::hashImageFile('wsz.11.jpg');  
*  $bHash = ImageHash::hashImageFile('wsz.12.jpg');  
*  var_dump(ImageHash::isHashSimilar($aHash, $bHash));  
*  
*  //Sample_2  
*  var_dump(ImageHash::isImageFileSimilar('wsz.11.jpg', 'wsz.12.jpg'));  
* </code>  
*/   
   
class ImageHash {   
   
   /**取樣倍率 1~10  
    * @access public  
    * @staticvar int  
    * */   
   public static $rate = 2;   
   
   /**相似度允許值 0~64  
    * @access public  
    * @staticvar int  
    * */   
   public static $similarity = 80;   
   
   /**圖片類型對(duì)應(yīng)的開啟函數(shù)  
    * @access private  
    * @staticvar string  
    * */   
   private static $_createFunc = array(   
       IMAGETYPE_GIF   =>'imageCreateFromGIF',   
       IMAGETYPE_JPEG  =>'imageCreateFromJPEG',   
       IMAGETYPE_PNG   =>'imageCreateFromPNG',   
       IMAGETYPE_BMP   =>'imageCreateFromBMP',   
       IMAGETYPE_WBMP  =>'imageCreateFromWBMP',   
       IMAGETYPE_XBM   =>'imageCreateFromXBM',   
   );   
   
   
   /**從文件建立圖片  
    * @param string $filePath 文件地址路徑  
    * @return resource 當(dāng)成功開啟圖片則傳遞圖片 resource ID,失敗則是 false  
    * */   
   public static function createImage($filePath){   
       if(!file_exists($filePath)){ return false; }   
   
       /*判斷文件類型是否可以開啟*/   
       $type = exif_imagetype($filePath);   
       if(!array_key_exists($type,self::$_createFunc)){ return false; }   
   
       $func = self::$_createFunc[$type];   
       if(!function_exists($func)){ return false; }   
   
       return $func($filePath);   
   }   
   
   
   /**hash 圖片  
    * @param resource $src 圖片 resource ID  
    * @return string 圖片 hash 值,失敗則是 false  
    * */   
   public static function hashImage($src){   
       if(!$src){ return false; }   
   
       /*縮小圖片尺寸*/   
       $delta = 8 * self::$rate;   
       $img = imageCreateTrueColor($delta,$delta);   
       imageCopyResized($img,$src, 0,0,0,0, $delta,$delta,imagesX($src),imagesY($src));   
   
       /*計(jì)算圖片灰階值*/   
       $grayArray = array();   
       for ($y=0; $y<$delta; $y++){   
           for ($x=0; $x<$delta; $x++){   
               $rgb = imagecolorat($img,$x,$y);   
               $col = imagecolorsforindex($img, $rgb);   
               $gray = intval(($col['red']+$col['green']+$col['blue'])/3)& 0xFF;   
   
               $grayArray[] = $gray;   
           }   
       }   
       imagedestroy($img);   
   
       /*計(jì)算所有像素的灰階平均值*/   
       $average = array_sum($grayArray)/count($grayArray);   
   
       /*計(jì)算 hash 值*/   
       $hashStr = '';   
       foreach ($grayArray as $gray){   
           $hashStr .= ($gray>=$average) ? '1' : '0';   
       }   
   
       return $hashStr;   
   }   
   
   
   /**hash 圖片文件  
    * @param string $filePath 文件地址路徑  
    * @return string 圖片 hash 值,失敗則是 false  
    * */   
   public static function hashImageFile($filePath){   
       $src = self::createImage($filePath);   
       $hashStr = self::hashImage($src);   
       imagedestroy($src);   
   
       return $hashStr;   
   }   
   
   
   /**比較兩個(gè) hash 值,是不是相似  
    * @param string $aHash A圖片的 hash 值  
    * @param string $bHash B圖片的 hash 值  
    * @return bool 當(dāng)圖片相似則傳遞 true,否則是 false  
    * */   
   public static function isHashSimilar($aHash, $bHash){   
       $aL = strlen($aHash); $bL = strlen($bHash);   
       if ($aL !== $bL){ return false; }   
   
       /*計(jì)算容許落差的數(shù)量*/   
       $allowGap = $aL*(100-self::$similarity)/100;   
   
       /*計(jì)算兩個(gè) hash 值的漢明距離*/   
       $distance = 0;   
       for($i=0; $i<$aL; $i++){   
           if ($aHash{$i} !== $bHash{$i}){ $distance++; }   
       }   
   
       return ($distance<=$allowGap) ? true : false;   
   }   
   
   
   /**比較兩個(gè)圖片文件,是不是相似  
    * @param string $aHash A圖片的路徑  
    * @param string $bHash B圖片的路徑  
    * @return bool 當(dāng)圖片相似則傳遞 true,否則是 false  
    * */   
   public static function isImageFileSimilar($aPath, $bPath){   
       $aHash = ImageHash::hashImageFile($aPath);   
       $bHash = ImageHash::hashImageFile($bPath);   
       return ImageHash::isHashSimilar($aHash, $bHash);   
   }   
   

相關(guān)文章

最新評(píng)論

临颍县| 彰武县| 晴隆县| 中方县| 长治县| 永安市| 汝城县| 张家川| 长兴县| 安平县| 毕节市| 襄汾县| 泽州县| 石台县| 建阳市| 常宁市| 乐至县| 嘉善县| 云南省| 抚州市| 新绛县| 睢宁县| 清流县| 奇台县| 本溪市| 昌黎县| 双流县| 衡水市| 庄浪县| 双峰县| 鹤庆县| 朝阳县| 炉霍县| 门头沟区| 右玉县| 阿勒泰市| 盐池县| 庐江县| 唐海县| 常熟市| 嫩江县|