Page 1 of 1

remove this blobs with connected components?

Posted: 2017-03-17T20:16:42-07:00
by diegomage
Im trying to remove this blobs point of this image but i dont know how I use this command

convert redsult.png -background White -layers Flatten -fill Black +opaque White zzz1fy_x2.png
convert zzz1fy_x2.png -define connected-components:area-threshold=54 -connected-components -4 -auto-level ccredsult.png
convert ccredsult.png -negate ccredsuddlt.png
convert ccredsuddlt.png -background White -layers Flatten -fill Black +opaque White zzz1sssfy_x2.png

Image

Image


please give me a help

Re: remove this blobs with connected components?

Posted: 2017-03-17T20:22:18-07:00
by fmw42
see http://magick.imagemagick.org/script/co ... onents.php

try

Code: Select all

convert lJBhv.png -define connected-components:area-threshold=14 -define connected-components:mean-color=true -connected-components 4 result.png

Re: remove this blobs with connected components?

Posted: 2017-03-17T20:27:24-07:00
by diegomage
works thankyou so much