Search found 10 matches

by jkop
2011-10-05T07:41:13-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

Re: composite -blend 1% [and how to add "darken only"]?

That works!

Code: Select all

convert *.png -compose linear_burn -flatten shadow_merge_result.png
correctly superimposes the 5 partial superimpositions into one.


Thank you very much :)
by jkop
2011-09-29T21:02:15-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

Re: composite -blend 1% [and how to add "darken only"]?

Hm, well for convert *.png +level 99%,100% \ -compose linear_burn -background white -flatten \ shadow_merge_result.png it doesn't seem to work to process say 5 groups of 20 images separately and then process the 5 results into one result. Processing 20 to 1 resultimage works fine, but processing 5 ...
by jkop
2011-09-28T23:22:14-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

Re: composite -blend 1% [and how to add "darken only"]?

Okay, thanks, I can process them in groups of 10 or the like. I'm on Linux :D
by jkop
2011-09-28T17:11:59-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

Re: composite -blend 1% [and how to add "darken only"]?

Thanks, how does one write such a loop, for example, with the following command

convert *.png +level 99%,100% \
-compose linear_burn -background white -flatten \
shadow_merge_result.png

?
by jkop
2011-09-28T16:17:00-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

Re: composite -blend 1% [and how to add "darken only"]?

Ok now I have made tests on my work computer on all 100 images with convert *.png +level 99%,100% \ -compose linear_burn -background white -flatten \ shadow_merge_result.png but the images might be too large, 3000x5000 pixels each, for the computer runs out of memory. If 16 GB RAM + 5 GB swap is not ...
by jkop
2011-09-28T02:48:59-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

Re: composite -blend 1% [and how to add "darken only"]?

P.S. The images are 8 bit grayscale, but each image is "thresholded" to black and white. Their superimposition, however, will create areas of gray depending on amount of overlaps in those areas (if each image is set to 1% opacity). Later I should also try convert *.png +level 70%,100% \ -background ...
by jkop
2011-09-28T02:31:56-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

Re: composite -blend 1% [and how to add "darken only"]?

Thanks very much for your comments :) I tried convert *.png +level 99%,100% \ -compose linear_burn -background white -flatten \ shadow_merge_result.png on a test batch of 10 images, and it seems it produced the desired result, and quite fast as well, which made me happy. However, when I tried it on ...
by jkop
2011-09-27T16:56:23-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

Re: composite -blend 1% [and how to add "darken only"]?

The batch of images are black and white and depict the shadow-shapes cast by a group of buildings: one shadow every 6th minute, from 8 am to 6 pm, which means 100 images of shadows, each slightly different from the other because of the rotation of the earth. Now if I superimpose them in such a way ...
by jkop
2011-09-27T11:25:46-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

Re: composite -blend 1% [and how to add "darken only"]?

Thanks :) now I can also darken images to resultimage. However, I need to darken and blend to resultimage. Is it possible?
by jkop
2011-09-27T10:22:32-07:00
Forum: Users
Topic: [SOLVED] composite -blend 1% [and how to add "darken only"]?
Replies: 21
Views: 33307

[SOLVED] composite -blend 1% [and how to add "darken only"]?

Hello :) I'm trying to superimpose a batch of hundred black and white images so that they blend with 1% opacity and "darken only". The multiplicity of the black parts should become visible without being covered by the white parts. Previously I have opened each and every image in Gimp, pasted them ...