Search found 74 matches

by geoland
2018-10-07T22:41:28-07:00
Forum: Users
Topic: Policy map settings
Replies: 7
Views: 5265

Re: Policy map settings

Unfortunately, xubuntu ships with <IM7 so all convert at the moment. No previous problems with IM until update to xubuntu 18+ so not sure why the difference. Fortunately, the mogrify step is not essential, but worth noting in view of the error messages. TIFF* TIFF rw+ Tagged Image File Format (LIBTI...
by geoland
2018-10-07T18:40:36-07:00
Forum: Users
Topic: Policy map settings
Replies: 7
Views: 5265

Re: Policy map settings

I think IM failed to process some of those .tiff files. Interestingly, I have set no restrictions in the policy map and turned off memory allocation in my bash script and '-alpha off' fails with convert and mogrify. mogrify -alpha off *.tiff or for f in `ls -v *.tiff`; do mogrify -alpha off $f; done...
by geoland
2018-10-07T17:44:44-07:00
Forum: Users
Topic: Policy map settings
Replies: 7
Views: 5265

Re: Policy map settings

Thanks. That's what I read but was sceptical.
by geoland
2018-10-07T15:33:40-07:00
Forum: Users
Topic: Policy map settings
Replies: 7
Views: 5265

Policy map settings

PI have just upgraded in xubuntu to Version: ImageMagick 6.9.7-4 Q16 x86_64 20170114 with Q16 installed as well. Processing involves large numbers of tiff and miff images - from 9mb - 80mb I have had memory allocation warnings and failure to read tiff headers, particularly with mogrify What are the ...
by geoland
2018-05-03T14:10:54-07:00
Forum: Users
Topic: Colour balancing - green reduction - changed the question
Replies: 6
Views: 5059

Re: Colour balancing - green reduction - changed the question

Thanks Fred, I have. I am using -color-matrix for applying channel multipliers to images from DSLRs without an astronomical filter mod. The user can add up to 5 matrices. It is a little intensive for developing a preview. And I may have asked the question too soon. Your scripts do precisely what's r...
by geoland
2018-05-03T14:00:12-07:00
Forum: Users
Topic: miff mpr - what to use?
Replies: 10
Views: 7401

Re: miff mpr - what to use?

Thanks. I was able to combine several commands as described in this thread. Largely, the do either / or nature of the work flow separates processes into individual commands, tied to user selectable options, the end result obtainable by several different pathways and processes.
by geoland
2018-05-03T13:34:32-07:00
Forum: Users
Topic: Colour balancing - green reduction - changed the question
Replies: 6
Views: 5059

Re: Colour balancing - green reduction - changed the question

With a little more experimenting, I find the colorbalance reference channel makes a difference image to image. Referenced to Blue the example image is nicely representative. Other images benefit from Red or Green.
by geoland
2018-05-01T01:35:32-07:00
Forum: Users
Topic: Colour balancing - green reduction - changed the question
Replies: 6
Views: 5059

Colour balancing - green reduction - changed the question

This image was processed by removing background tint and using Fred's autowhite colorbalance and curves scripts as follows. convert stack.tif -depth 16 -channel all -normalize +channel +normalize +compress -alpha off 2.miff ./autowhite 2.miff 3.miff ./colorbalance -c g -a 15 3.miff 4.miff ./curves -...
by geoland
2018-04-22T16:41:54-07:00
Forum: Users
Topic: miff mpr - what to use?
Replies: 10
Views: 7401

Re: miff mpr - what to use?

Thank you. Very informative to understanding how all this works. It occurred to me, after starting this thread, that the processes involved are buried in conditional statements which provide the option of performing the task or not. It would require a major overhaul to write the script based on mpr,...
by geoland
2018-04-21T20:29:58-07:00
Forum: Users
Topic: miff mpr - what to use?
Replies: 10
Views: 7401

Re: miff mpr - what to use?

Of course. Thanks. I have a bit more reading to do.
by geoland
2018-04-21T20:22:23-07:00
Forum: Users
Topic: Mogrify to output histograms with original file names
Replies: 3
Views: 3399

Re: Mogrify to output histograms with original file names

Thank you. A small adjustment to leave out 'histogram' and the gif extension, leaving only the filename... and happy to have the sequence begin as an animation... convert *.tif -set filename:f '%[t]' -define histogram:unique-colors=false histogram:$tmpdir/"%[filename:f].gif" for i in $tmpd...
by geoland
2018-04-21T19:54:19-07:00
Forum: Users
Topic: miff mpr - what to use?
Replies: 10
Views: 7401

miff mpr - what to use?

I have been reading up on miff mpr and mpc files in an attempt to make a fairly long and complicated bash script process more efficient. I'm not sure I'm on the right track. Presently, the script reads, potentially, dozens of large tif files and converts them to miff. An operation is performed on th...
by geoland
2018-04-21T18:39:32-07:00
Forum: Users
Topic: Mogrify to output histograms with original file names
Replies: 3
Views: 3399

Mogrify to output histograms with original file names

Hi. Is there a way to write this and retain the original file name. I have tried various mogrify options without success. I can't find a way to use mogrify in this case and it seems necessary to resort to bash scripting convert *.tif -define histogram:unique-colors=false histogram:$((x++))_histogram...