Search found 457 matches

by GreenKoopa
2013-07-18T15:38:53-07:00
Forum: Users
Topic: How does -unsharp work?
Replies: 17
Views: 26564

How does -unsharp work?

At a high level, -unsharp finds edges and exaggerates the differences. A helpful tutorial: http://www.cambridgeincolour.com/tutorials/unsharp-mask.htm http://www.cambridgeincolour.com/tutorials/local-contrast-enhancement.htm -unsharp has three parameters radius & sigma (area function) amount/gai...
by GreenKoopa
2013-07-18T14:40:16-07:00
Forum: Users
Topic: bilinear point in percents
Replies: 19
Views: 10371

Re: bilinear point in percents

I reread the documentation and pinpointed why I was confused. The documentation implies that -sparse-color uses image coordinates. This seems proper to me, and intuitive since that makes all three of us correct on our first instinct. But the images within the documentation look like they were create...
by GreenKoopa
2013-07-18T12:38:31-07:00
Forum: Users
Topic: bilinear point in percents
Replies: 19
Views: 10371

Re: bilinear point in percents

Hopefully we helped with your initial problem Wolfy, so I'll continue on with this coordinate system question. Some IM commands use 0,0 to mean the center of the top-left pixel (pixel coordinates), while others use 0,0 to mean the top-left edge of the image (top-left edge of the top-left pixel) (ima...
by GreenKoopa
2013-07-18T09:27:11-07:00
Forum: Users
Topic: bilinear point in percents
Replies: 19
Views: 10371

Re: bilinear point in percents

Instead of 50%, try %[fx:0.50*w]. In some places this works, others not (support is expanding). When it does, it is far more flexible that simple percents.
by GreenKoopa
2013-07-17T21:58:04-07:00
Forum: Bugs
Topic: -channel
Replies: 5
Views: 2733

Re: -channel

Thank you for the past history and future roadmap. All of your efforts are much appreciated!
by GreenKoopa
2013-07-17T14:38:17-07:00
Forum: Bugs
Topic: -channel
Replies: 5
Views: 2733

Re: -channel

Sure, I could do this:

Code: Select all

convert -size 500x500 xc:#F00 xc:#0FF   ( -clone 0-1 -average ) -delete 1 -compose Copy_Blue -composite x.png
So -fx and -level supporting -channel is unnecessary. But it sure is convenient, so why the difference?
by GreenKoopa
2013-07-17T13:39:39-07:00
Forum: Bugs
Topic: -channel
Replies: 5
Views: 2733

-channel

-channel applies to -fx, but not -poly or -average. Is there reason? convert -size 500x500 xc:#F00 xc:#0FF -channel B -average ave.png convert -size 500x500 xc:#F00 xc:#0FF -channel B -poly "0.5,1 0.5,1" poly.png convert -size 500x500 xc:#F00 xc:#0FF -channel B -fx "(u+v)/2" fx.p...
by GreenKoopa
2013-07-16T22:27:29-07:00
Forum: Bugs
Topic: writing multi-image tiff
Replies: 12
Views: 5321

Re: writing multi-image tiff

That's a great tip to know. I could never figure out why I couldn't make a tiff out of both a photo and a greyscale mask and open them together as layers in Gimp. Now I know how. Yippee! I think this used to work for me. This is a change. I think we can agree this isn't an IM bug? There is nothing ...
by GreenKoopa
2013-07-16T19:54:35-07:00
Forum: Bugs
Topic: writing multi-image tiff
Replies: 12
Views: 5321

Re: writing multi-image tiff

At first the unexpected behavior made no sense. All of the images were in the tiff file. IM could see them. GIMP could see them. GIMP could even open them, as long as it was one at a time. So why not all at once? And why does a seemingly random selection of layers get opened while others are silentl...
by GreenKoopa
2013-07-16T19:41:44-07:00
Forum: Bugs
Topic: writing multi-image tiff
Replies: 12
Views: 5321

Re: writing multi-image tiff

When the images are in colour, with +compress, I see almost no difference in file size. ... Monochrome images are smaller in the newer IM. Compressed sizes are also smaller. I doubt that this is relevant. Good observation! When all of the images are TrueColor (tiff:photometric: RGB), it works prope...
by GreenKoopa
2013-07-16T13:40:58-07:00
Forum: Bugs
Topic: writing multi-image tiff
Replies: 12
Views: 5321

Re: writing multi-image tiff

I am on Windows 7, also using the latest GIMP. Are you seeing the tiff file size change? Further testing: I get the same undesirable result using 6.8.4-8, 6.8.5-6, and 6.8.6-3. Opening as images works. The problem is only with opening as layers. The more images I add to the file, the more that appea...
by GreenKoopa
2013-07-16T13:05:19-07:00
Forum: Bugs
Topic: writing multi-image tiff
Replies: 12
Views: 5321

writing multi-image tiff

Way back at version 6.8.3-0 I could create a tiff containing multiple images and open it in GIMP as layers (or separate images). Using version 6.8.4-8 and up there are several changes. The tiff is significantly fewer bytes. GIMP lists all the images and can open any one, but can't open all at once. ...
by GreenKoopa
2013-07-15T13:59:33-07:00
Forum: Users
Topic: Move specific pixels
Replies: 9
Views: 5152

Re: Move specific pixels

It will depend on how you want to specify the area and new location. Here is one option: convert src.png ^ ( -clone 0 -crop 64x50+0+0 ) ^ ( -clone 0-1 -compose Dst_Out -composite ) ^ -delete 0 +swap ^ -geometry +0+4 -compose Over -composite ^ dst.png 1 - read in file 2 - copy area to be moved 3 - er...
by GreenKoopa
2013-07-15T13:08:36-07:00
Forum: Users
Topic: Move specific pixels
Replies: 9
Views: 5152

Re: Move specific pixels

For each image, do you know exactly what area you want moved and by how much? Is the background always transparent?
by GreenKoopa
2013-07-15T12:58:38-07:00
Forum: Users
Topic: Move specific pixels
Replies: 9
Views: 5152

Re: Move specific pixels

Did the left side get moved down 4 pixels, or is that a rotate?