如何使用php在图像上找到整个圆形和矩形形状

时间:2015-04-06 15:54:43

标签: php image geometry

我正在使用PHP在OMR answer sheet阅读项目上做项目。我得到的问题是我找不到整个圆圈。此外,我必须找到一个4个矩形来检查图像是否与该矩形查找角度相矛盾并旋转该图像。

  

$ thiscol = imagecolorat($ image,$ x,$ y);

        $rgb = imagecolorsforindex($image, $thiscol);
        if($rgb['red']<50 && $rgb['green']<50 && $rgb['blue']<50)
        {
            return 1;
        }
        else
        {
            return 0;
        }

使用此功能我只得到一个像素,我没有得到整个圆圈。

0 个答案:

没有答案