Search found 74 matches

by geoland
2016-06-22T21:10:41-07:00
Forum: Users
Topic: fft syntax
Replies: 5
Views: 3357

Re: fft syntax

Thanks. I'll take another look.
by geoland
2016-06-22T15:05:48-07:00
Forum: Users
Topic: fft syntax
Replies: 5
Views: 3357

Re: fft syntax

Thanks fwm42. I am following the procedure from the fft notch filtering example. In my previous post twigs was replaced with logo - my test image. All I want to do is remove \ from the syntax and put each expression on a single line and avoid newlines - this was simple enough with the first two conv...
by geoland
2016-06-22T03:02:01-07:00
Forum: Users
Topic: fft syntax
Replies: 5
Views: 3357

fft syntax

I'm attempting to reproduce the notch filtering demo on the fft page and playing with mask creation ATM - the twig image example. How should I write the last line as a one-liner? convert LOGO.png -fft +delete -colorspace gray -auto-level -evaluate log 100000 logo_spectrum.png convert logo_spectrum_m...
by geoland
2016-06-15T01:30:25-07:00
Forum: Users
Topic: [SOLVED] mostly- scripting display -loop 0 infinite
Replies: 3
Views: 3691

[SOLVED] mostly- Re: scripting display -loop 0 infinite

This was the best I could come up with. Suggestions for improvement? Perhaps better mogrify contrast settings. -normalize does a different thing in display and animate and I would like the animation and editing windows to look the same. #!/bin/bash #ifs.sh # A blink script # testing only # rm -f *.t...
by geoland
2016-06-14T03:54:40-07:00
Forum: Users
Topic: [SOLVED] mostly- scripting display -loop 0 infinite
Replies: 3
Views: 3691

Re: scripting display -loop 0 infinite

The problem with using animate is that frames cannot be deleted. In that File Delete is not available. animate on my version of IM does not accept -contrast or -normalize which I need to display what are otherwise near linear images. I imagine this is a bash scripting question - closing the display ...
by geoland
2016-06-13T04:56:12-07:00
Forum: Users
Topic: [SOLVED] mostly- scripting display -loop 0 infinite
Replies: 3
Views: 3691

[SOLVED] mostly- scripting display -loop 0 infinite

Hi. I want to keep looping files until the display window is closed - space bar forward and backspace backward, ad-infinitum. Edits follow... Presently, the loop completes 3 times and closes. Version: ImageMagick 6.8.9-9 Q16 x86_64 2016-06-01 Should I be using animate instead? files=*.ppm for i in $...
by geoland
2016-06-12T05:29:47-07:00
Forum: Users
Topic: map bright r and b pixels and negate rest of image?
Replies: 4
Views: 3285

Re: map bright r and b pixels and negate rest of image?

I'm not sure how to tackle this but the operation will be on the final image and orientation will not be an issue. The colour and intensity of the offending pixels is significantly brighter than the remainder of the image. If the hot pixels are mapped and averaged to the surrounding pixels using int...
by geoland
2016-06-12T02:06:19-07:00
Forum: Users
Topic: map bright r and b pixels and negate rest of image?
Replies: 4
Views: 3285

Re: map bright r and b pixels and negate rest of image?

Not sure what happened there. Corrected in post.
by geoland
2016-06-11T05:44:19-07:00
Forum: Users
Topic: map bright r and b pixels and negate rest of image?
Replies: 4
Views: 3285

map bright r and b pixels and negate rest of image?

convert rose: -colorspace rgb -colors 256 -depth 8 -format "%c" histogram:info: color="( *137, *168, *119)" convert rose: -colorspace rgb -colors 256 -depth 8 txt: | \ grep "$color" | cut -d: -f1 http://www.imagemagick.org/Usage/color_basics/#zeroing I gleaned the code...
by geoland
2016-06-09T01:41:58-07:00
Forum: Users
Topic: IM separate combine syntax
Replies: 11
Views: 5809

Re: IM separate combine syntax

I am attempting to stay as linear as possible for the workflow, as follows, then convert to sRGB. I don't want any adjustments to the images - realistically as little as possible. Post processing external to the calibration script. I checked the dcraw man page. These are the options used in my scrip...
by geoland
2016-06-09T00:05:29-07:00
Forum: Users
Topic: IM separate combine syntax
Replies: 11
Views: 5809

Re: IM separate combine syntax

Thanks.
Typo corrected in post.

I have left out the in between processing. So between separate and -combine the files are subtracted and or divided as required.

Is there any advantage then in a linear dcraw output if the files will only be subtracted and divided between -separate and -combine?
by geoland
2016-06-08T22:32:16-07:00
Forum: Users
Topic: IM separate combine syntax
Replies: 11
Views: 5809

Re: IM separate combine syntax

The tiff files are converted RAW using dcraw -4 option with a view to retaining the raw data as much as possible. This works well when converting to grayscale, but not sure of the advantage when working in color, in which case the following syntax IM v6.8.x.x? convert input.tiff -separate %d.miff co...
by geoland
2016-06-08T20:39:59-07:00
Forum: Users
Topic: IM separate combine syntax
Replies: 11
Views: 5809

IM separate combine syntax

I want to check the syntax is correct to perform the following operations - the examples adapted from the colour space pages. The workflow is linear to sRGB with no exposure, brightness, gamma, saturation adjustments. separate RGB.tiff image into R G B channels. Process each channel and combine as s...
by geoland
2016-05-30T21:19:44-07:00
Forum: Users
Topic: [SOLVED] Color retention in RGB separate channel processing
Replies: 6
Views: 3655

Re: [SOLVED] Color retention in RGB separate channel processing

I might need some help to get started and will start a new thread - thks
by geoland
2016-05-30T17:35:24-07:00
Forum: Users
Topic: [SOLVED] Color retention in RGB separate channel processing
Replies: 6
Views: 3655

Re: [SOLVED] Color retention in RGB separate channel processing

I have almost completed a bash script to automate the current process using arrays to sort images into temporary folders progressively processing and moving and deleting files. I take it -clone parenthesis will eliminate a lot of processing which is quite intensive, given that eventually the script ...