Trivial changes, removing an unused variable, rename a method and so on
This commit is contained in:
parent
65a634fb98
commit
3b3274a26a
@ -22,7 +22,6 @@ class PerceptionHash implements Algorithm
|
||||
$row = array();
|
||||
$rows = array();
|
||||
$col = array();
|
||||
$cols = array();
|
||||
for ($y = 0; $y < static::SIZE; $y++) {
|
||||
for ($x = 0; $x < static::SIZE; $x++) {
|
||||
$rgb = imagecolorsforindex($resized, imagecolorat($resized, $x, $y));
|
||||
@ -89,7 +88,7 @@ class PerceptionHash implements Algorithm
|
||||
$sum += $pixels[$j] * cos($i * pi() * ($j + 0.5) / ($size));
|
||||
}
|
||||
$sum *= sqrt(2 / $size);
|
||||
if ($i == 0) {
|
||||
if ($i === 0) {
|
||||
$sum *= 1 / sqrt(2);
|
||||
}
|
||||
$transformed[$i] = $sum;
|
||||
|
@ -3,7 +3,7 @@
|
||||
use Image\PerceptualHash;
|
||||
use Image\PerceptualHash\Algorithm\PerceptionHash;
|
||||
|
||||
class PerceptualHashTest extends PHPUnit_Framework_TestCase
|
||||
class PerceptionHashTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function setUp()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user