how apply a filter similar a gausian blur that close two circles at the same time independent of size of the circles?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
diegomage
Posts: 205
Joined: 2017-03-08T10:12:28-07:00
Authentication code: 1151

how apply a filter similar a gausian blur that close two circles at the same time independent of size of the circles?

Post by diegomage »

I apply gausian blur and adjust color of curves and I convert this


Image

IN this

Image




How I could close this two circles at the same time

I use gimp for color curves adjustment
Image


without use connected components


Please help me
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: how apply a filter similar a gausian blur that close two circles at the same time?

Post by snibgo »

Code: Select all

convert DhkbK.png -blur 0x40 -auto-level -threshold 90% -trim out.png
Does that help?
snibgo's IM pages: im.snibgo.com
diegomage
Posts: 205
Joined: 2017-03-08T10:12:28-07:00
Authentication code: 1151

Re: how apply a filter similar a gausian blur that close two circles at the same time independent of size of the circles

Post by diegomage »

yes this works very thankyou
Post Reply