在php上的指纹

时间:2011-05-16 21:55:41

标签: php image-processing

有没有办法在php上识别图像或指纹或非常复杂的图像?

您知道library或其他什么来识别这样的图像吗?

1 个答案:

答案 0 :(得分:2)

imageMagick:imagMagick Doc

<?php

$image1 = new imagick("image1.png");

$image2 = new imagick("image2.png");

$result = $image1->compareImages($image2, Imagick::METRIC_MEANSQUAREERROR);
$result[0]->setImageFormat("png");

header("Content-Type: image/png");
echo $result[0];

?>

来自php doc。

这门课也可以完成这项工作: Comparison class

哦,对于指纹,比较基本上是基于一个非常复杂的方法(比较12个相同的区域),你不能只用简单的PHP脚本来做它