RSS/Atom feed Twitter
Site is read-only, email is disabled

Why does growning the selection rounds the corners?

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

4 of 4 messages available
Toggle history

Please log in to manage your subscriptions.

Why does growning the selection rounds the corners? ryrych@gmail.com 22 Nov 12:30
  Why does growning the selection rounds the corners? Martin Nordholts 22 Nov 12:41
   Why does growning the selection rounds the corners? Martin Nordholts 22 Nov 12:45
   Why does growning the selection rounds the corners? jcupitt@gmail.com 22 Nov 12:46
ryrych@gmail.com
2008-11-22 12:30:21 UTC (about 16 years ago)

Why does growning the selection rounds the corners?

Hello,

Could anyone tell me why growing the selection rounds the corners? Many, many times I just want to grow rectangle selection by some pixels and don't want it to be rounded. So I have to always take the rectangle selection tool and adjust them.
Could you add this feature?

Martin Nordholts
2008-11-22 12:41:48 UTC (about 16 years ago)

Why does growning the selection rounds the corners?

ryrych@gmail.com wrote:

Hello,

Could anyone tell me why growing the selection rounds the corners?

Hi!

Because the algorithm is generic and does not attempt to retain any special geometrical properties of the selection. Keep in mind that the selection is essentially just a channel.

Could you add this feature?

Any feature that makes sense can be added as long as someone writes the code. I think your use case makes sense and one way to support it would be to add a check box to the Grow Selection dialog that if checked would only grow the selection in the x and y axis.

- Martin

Martin Nordholts
2008-11-22 12:45:41 UTC (about 16 years ago)

Why does growning the selection rounds the corners?

Martin Nordholts wrote:

ryrych@gmail.com wrote:

Could you add this feature?

I think your use case makes sense and one way to support it would be to add a check box to the Grow Selection dialog that if checked would only grow the selection in the x and y axis.

- Martin

Or rather: First the x-axis and then the y-axis.

- Martin

jcupitt@gmail.com
2008-11-22 12:46:57 UTC (about 16 years ago)

Why does growning the selection rounds the corners?

2008/11/22 Martin Nordholts :

code. I think your use case makes sense and one way to support it would be to add a check box to the Grow Selection dialog that if checked would only grow the selection in the x and y axis.

Another option would be to let people specify the morphological mask it uses for the grow operation (I assume that's how it's implemented). A square mask would preserve corners in rectangular selections, I think.

John