欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

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

由于相似圖片搜索的php實(shí)現(xiàn)的 API 不怎么符合我的用途,所以我重新定義 API 的架構(gòu),改寫(xiě)成比較簡(jiǎn)單的函數(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;   
   
   /**圖片類(lèi)型對(duì)應(yīng)的開(kāi)啟函數(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)成功開(kāi)啟圖片則傳遞圖片 resource ID,失敗則是 false  
    * */   
   public static function createImage($filePath){   
       if(!file_exists($filePath)){ return false; }   
   
       /*判斷文件類(lèi)型是否可以開(kāi)啟*/   
       $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)文章

  • php array_walk() 數(shù)組函數(shù)

    php array_walk() 數(shù)組函數(shù)

    函數(shù)array_walk():單一數(shù)組回調(diào)函數(shù)---對(duì)數(shù)組中的每個(gè)成員應(yīng)用用戶(hù)函數(shù)
    2011-07-07
  • PHP實(shí)現(xiàn)獲取MySQL數(shù)據(jù)庫(kù)的記錄數(shù)據(jù)

    PHP實(shí)現(xiàn)獲取MySQL數(shù)據(jù)庫(kù)的記錄數(shù)據(jù)

    如果后臺(tái)數(shù)據(jù)處理使用PHP來(lái)進(jìn)行,那么就要有相應(yīng)的數(shù)據(jù)處理及返回。最常用的就是獲取記錄總數(shù)和表記錄查詢(xún)結(jié)果。本文將為大家介紹如何利用PHP實(shí)現(xiàn)獲取MySQL數(shù)據(jù)庫(kù)的記錄數(shù)據(jù),需要的可以參考一下
    2022-02-02
  • 解析php中兩種縮放圖片的函數(shù),為圖片添加水印

    解析php中兩種縮放圖片的函數(shù),為圖片添加水印

    本篇文章是對(duì)php中兩種縮放圖片的函數(shù),為圖片添加水印的方法進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-06-06
  • PHP經(jīng)典實(shí)用正則表達(dá)式小結(jié)

    PHP經(jīng)典實(shí)用正則表達(dá)式小結(jié)

    這篇文章主要介紹了PHP經(jīng)典實(shí)用正則表達(dá)式,結(jié)合具體實(shí)例總結(jié)分析了php基于正則實(shí)現(xiàn)驗(yàn)證、查找、匹配等相關(guān)操作技巧,需要的朋友可以參考下
    2017-05-05
  • PHP類(lèi)中Static方法效率測(cè)試代碼

    PHP類(lèi)中Static方法效率測(cè)試代碼

    因?yàn)橛泻脦讉€(gè)項(xiàng)目等著做,又不是很急,再加上目前成型的那些框架多多少少用著總是有點(diǎn)不太如意,所以決定先自己寫(xiě)一個(gè)框架,然后再做項(xiàng)目。既然寫(xiě)框架,自然要經(jīng)常做一些執(zhí)行效率上的測(cè)試,今天做了一個(gè)static效率的測(cè)試。
    2010-10-10
  • PHP冒泡排序算法代碼詳細(xì)解讀

    PHP冒泡排序算法代碼詳細(xì)解讀

    PHP冒泡排序算法代碼詳細(xì)解讀,需要學(xué)習(xí)php冒泡排序算法的朋友可以參考下。
    2011-07-07
  • PHP 截取字符串函數(shù)整理(支持gb2312和utf-8)

    PHP 截取字符串函數(shù)整理(支持gb2312和utf-8)

    常見(jiàn)的 PHP 截取字符串函數(shù)整理,支持gb2312和utf-8編碼,方法php開(kāi)發(fā)中需要用到截取字符串的問(wèn)題。
    2010-02-02
  • php設(shè)計(jì)模式 Facade(外觀模式)

    php設(shè)計(jì)模式 Facade(外觀模式)

    為子系統(tǒng)中的一組接口提供一個(gè)一致的界面,定義一個(gè)高層接口,使得這一子系統(tǒng)更加的容易使用
    2011-06-06
  • mysql 中InnoDB和MyISAM的區(qū)別分析小結(jié)

    mysql 中InnoDB和MyISAM的區(qū)別分析小結(jié)

    InnoDB和MyISAM是在使用MySQL最常用的兩個(gè)表類(lèi)型,各有優(yōu)缺點(diǎn),視具體應(yīng)用而定?;镜牟顒e為:MyISAM類(lèi)型不支持事務(wù)處理等高級(jí)處理,而InnoDB類(lèi)型支持。MyISAM類(lèi)型的表強(qiáng)調(diào)的是性能,其執(zhí)行數(shù)度比InnoDB類(lèi)型更快,但是不提供事務(wù)支持,而InnoDB提供事務(wù)支持已經(jīng)外部鍵等高級(jí)數(shù)據(jù)庫(kù)功能。
    2008-04-04
  • PHP實(shí)現(xiàn)的裝箱算法示例

    PHP實(shí)現(xiàn)的裝箱算法示例

    這篇文章主要介紹了PHP實(shí)現(xiàn)的裝箱算法,結(jié)合實(shí)例形式分析了PHP裝箱算法的概念、原理、定義及使用方法,需要的朋友可以參考下
    2018-06-06

最新評(píng)論