What convert command do I use to blur part of an image. For now I am using
convert source.jpg -fill white -draw "polyline 671,395 665,356 812,331 818,370" result.jpg
It creates white four points shape on the image, but I need blur all of this part of the image.
Thanks!
convert source.jpg -region WxH+X+Y -blur 0x3 result.jpg
where W is width, H is height, X is x offset from top-left and Y is y offset from top-left. – Whewrectangle
in your question and didn’t check! It’s late here, so I’ll do it another way tomorrow unless @fmw42 does it first 😄 – Whew