如何使用ImageMagick替换图像中的白色矩形?

时间:2015-06-22 06:54:56

标签: php image-processing imagemagick

概述:

第一张照片是我原来的照片。在这里,我想用另一个图像替换显示的白色矩形。

enter image description here

我的方法:

我使用floodfill创建了一个蒙版图像,它看起来像是:

enter image description here

问题:

现在我想在第二张图像中获取矩形的距离或坐标,这样我就可以使用这些坐标在这里的第一张(原始图像)上叠加新图像。

我有点想法使用ImageMagick的chebyshev形态运算符,但我不知道如何做到这一点。

1 个答案:

答案 0 :(得分:6)

我认为您可以使用简单的阈值非常准确地找到形状,如下所示:

convert image.jpg -threshold 90% result.jpg

enter image description here

然后你可以像这样进行Canny边缘检测:

convert image.jpg -threshold 90% -canny 0x1+10%+30% result.jpg

enter image description here

接下来我要看的是,使用-trim函数找到修剪框坐标,如下所示:

convert result.jpg -format "%@" info:
320x248+152+40

我在下面的红色标记了。

enter image description here

如果你真的想修剪,请使用:

convert result.jpg -trim result.jpg

enter image description here

还有,偏斜角度

convert result.jpg -deskew 40 -format "%[deskew:angle]" info:
-0.111906

霍夫线检测也可能对您有效:

convert image.jpg -threshold 90% -canny 0x1+10%+30%      \
    \( +clone -background none                           \
              -fill red -stroke red -strokewidth 2       \
              -hough-lines 5x5+80 -write lines.mvg       \
    \) -composite hough.png

enter image description here

文件lines.mvg包含您要查找的4行

# Hough line transform: 5x5+80
viewbox 0 0 640 360
line 449.259,0 474.432,360  # 90
line 0,72.5604 640,27.8072  # 143
line 0,293.098 640,248.344  # 187
line 153.538,0 178.712,360  # 153

有点懒,我没有想要解决这些线的交叉点,所以我想我也让ImageMagick这样做 - 通过使用Morphology寻找像这样的Line Junctions: / p>

convert image.jpg -threshold 90% -canny 0x1+10%+30%                        \
  \( +clone -background none -fill red -stroke red -hough-lines 5x5+80 \)  \ 
     -composite -fuzz 50% -fill black -opaque white                        \
     -morphology HMT LineJunctions hough.png

enter image description here