我想要的是我当前代码的一个工作的、优化的版本。虽然我的函数确实返回了一个包含实际结果的数组,但我不知道它们是否正确(我不是数学大师,也不知道 Java 代码可以将我的结果与已知实现进行比较)。其次,我希望该功能能够接受自定义表格大小,但我不知道该怎么做。表格大小是否等同于重新采样图像?我是否正确应用了系数?
// a lot of processing is required for large images
$image = imagecreatetruecolor(21, 21);
$black = imagecolorallocate($image, 0, 0, 0);
$white = imagecolorallocate($image, 255, 255, 255);
imagefilledellipse($image, 10, 10, 15, 15, $white);
print_r(imgDTC($image));
function imgDTC($img, $tableSize){
// m1 = Matrix1, an associative array with pixel data from the image
// m2 = Matrix2, an associative array with DCT Frequencies
// x1, y1 = coordinates in matrix1
// x2, y2 = coordinates in matrix2
$m1 = array();
$m2 = array();
// iw = image width
// ih = image height
$iw = imagesx($img);
$ih = imagesy($img);
// populate matrix1
for ($x1=0; $x1<$iw; $x1++) {
for ($y1=0; $y1<$ih; $y1++) {
$m1[$x1][$y1] = imagecolorat($img, $x1, $y1) & 0xff;
}
}
// populate matrix2
// for each coordinate in matrix2
for ($x2=0;$x2<$iw;$x2++) {
for ($y2=0;$y2<$ih;$y2++) {
// for each coordinate in matrix1
$sum = 1;
for ($x1=0;$x1<$iw;$x1++) {
for ($y1=0;$y1<$ih;$y1++) {
$sum +=
cos(((2*$x1+1)/(2*$iw))*$x2*pi()) *
cos(((2*$y1+1)/(2*$ih))*$y2*pi()) *
$m1[$x1][$y1]
;
}
}
// apply coefficients
$sum *= .25;
if ($x2 == 0 || $y2 == 0) {
$sum *= 1/sqrt(2);
}
$m2[$x2][$y2] = $sum;
}
}
return $m2;
}
我的 PHP 函数是 Java 中这篇文章的派生词:Java中 DCT 和 IDCT 算法的问题。我已经重写了 php 和可读性的代码。最终,我正在编写一个脚本,使我能够比较图像并找到相似之处。此处概述了该技术:http ://www.hackerfactor.com/blog/index.php?/archives/432-Looks-Like-It.html 。
谢谢!