PHP Class Grafika\Imagick\ImageHash\AverageHash
Algorithm:
Reduce size. Remove high frequencies and detail by shrinking to 8x8 so that there are 64 total pixels.
Reduce color. The tiny 8x8 picture is converted to a grayscale.
Average the colors. Compute the mean value of the 64 colors.
Compute the bits. Each bit is simply set based on whether the color value is above or below the mean.
Construct the hash. Set the 64 bits into a 64-bit integer. The order does not matter, just as long as you are consistent.
http://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html
Afficher le fichier
Open project: kosinix/grafika
Méthodes publiques
Méthode |
Description |
|
hash ( Image $image ) : string |
Generate and get the average hash of the image. |
|
Method Details
Generate and get the average hash of the image.
public hash ( Image $image ) : string |
$image |
Grafika\Imagick\Image |
|
Résultat |
string |
|