Search found 74 matches

by geoland
2017-10-31T13:22:18-07:00
Forum: Users
Topic: Remove background gradient
Replies: 10
Views: 8801

Re: Remove background gradient

Perhaps, in this case, but not far off. A bit of tweaking will fix that. Good stuff. Many thanks again. I made a few changes to my previous post, btw.
by geoland
2017-10-31T12:24:52-07:00
Forum: Users
Topic: Remove background gradient
Replies: 10
Views: 8801

Re: Remove background gradient

Thanks snigbo, greatly appreciated. With a better idea of the process, I'll play with it and see how it all shapes up. Bighter stars are often used as a reference for whitebalance in astro images. This region is somewhat dominated by the three blue giants shedding their luminance across the field. T...
by geoland
2017-10-31T03:52:51-07:00
Forum: Users
Topic: Remove background gradient
Replies: 10
Views: 8801

Re: Remove background gradient

Lots of stars... Orion. The belt region. The image is a stack of 21 frames. They are all dark subtracted, as well as bias subtraction and flat division before stacking. I see what you're doing. Interstingly, the red contribution is expected. The camera's IR filter has been removed and replaced with ...
by geoland
2017-10-31T01:49:43-07:00
Forum: Users
Topic: Remove background gradient
Replies: 10
Views: 8801

Re: Remove background gradient

Thanks. This is a half size jpg of the original linear tiff. I want to get rid of the muddy red/brown colour/gradient. I know there are other programs that do this, for this type of image. I'm interested in an IM solution to add to my work flow. I have tried various methods by following the document...
by geoland
2017-10-30T22:56:35-07:00
Forum: Users
Topic: Remove background gradient
Replies: 10
Views: 8801

Remove background gradient

I would like to remove background gradients in images taken at night, where the background is a function of street light intensity and colour. Is the process described possible with IM. "Simple gradients can be effectively removed by creating an image containing only a smooth plane, with a slop...
by geoland
2017-07-23T12:29:17-07:00
Forum: Users
Topic: Applying channel multipliers to RGB channels
Replies: 5
Views: 4344

Re: Applying channel multipliers to RGB channels

The data behind the matrix may assume pixels values are linear, not sRGB (or AdobeRGB or whatever). If so, put "-colorspace RGB" before the matrix and "-colorspace sRGB" after it. That fits in with the workflow. Plan is to apply this to linear images. The 4th and 5th column seem...
by geoland
2017-07-22T16:44:35-07:00
Forum: Users
Topic: Applying channel multipliers to RGB channels
Replies: 5
Views: 4344

Re: Applying channel multipliers to RGB channels

Thanks. This is what I came up with. Works quite well. #! /bin/bash # Apply DSLR channel multipliers, obtained from # https://www.dxomark.com/Cameras/Canon/EOS-450D---Measurements # ImageMagick -color-matrix # To run script from command line in Windows OS replace \ with ^ AFAIK... # Canon 450D # R s...
by geoland
2017-07-22T02:12:09-07:00
Forum: Users
Topic: Applying channel multipliers to RGB channels
Replies: 5
Views: 4344

Applying channel multipliers to RGB channels

Hi. Given the channel multiplier values R sRGB G sRGB B sRGB R raw 1.91 -1 0.09 G raw -0.19 1.65 -0.46 B raw 0.07 -0.7 1.64 Color matrix as defined in ISO standard 17321 Is there an IM method for applying multipliers to each channel, as follows? R = 1.91 * r - 1 * g + 0.09 * b G = -0.19* r + 1.65 * ...
by geoland
2017-07-02T14:47:27-07:00
Forum: Users
Topic: Combined convert commands - UNIX - buggy
Replies: 3
Views: 2915

Re: Combined convert commands - UNIX - buggy

Thank you. RGB Channel separation was problematic using -clone. 0 1 2 should equate to R G B but the channels appeared to have been swapped (when recombined). convert stack.tiff -separate %d.miff produces 4 channels. 4 being the alpha channel??? LAB channel separation didn't work with -clone - the d...
by geoland
2017-07-01T22:19:52-07:00
Forum: Users
Topic: Combined convert commands - UNIX - buggy
Replies: 3
Views: 2915

Combined convert commands - UNIX - buggy

Version: ImageMagick 7.0.6-0 Q16 x86_64 2017-06-26 xubuntu 16.04 The following commands generate individual R G B L L* channels as well as combining into LRGB and L*RGB images. I have attempted a couple of -clone examples below combining lines 1, 2 and 3 and lines 4, 5 and 6 - working but buggy? Giv...
by geoland
2017-07-01T20:55:15-07:00
Forum: Users
Topic: Use of -clone with single input image - UNIX
Replies: 2
Views: 2755

Re: Use of -clone with single input image - UNIX

Of course!!! Thanks
by geoland
2017-07-01T19:56:47-07:00
Forum: Users
Topic: Use of -clone with single input image - UNIX
Replies: 2
Views: 2755

Use of -clone with single input image - UNIX

Version: ImageMagick 7.0.6-0 Q16 x86_64 2017-06-26 xubuntu 16.04 Hi Is -clone the correct operator here? Single input image two outputs convert stack.tiff \( -clone 0 -depth 16 +compress -alpha off out.png \) -depth 16 +compress -alpha off out.tiff error convert: unable to open image 'out.png': Trie...
by geoland
2017-06-18T22:38:44-07:00
Forum: Users
Topic: Polynomial expression use
Replies: 12
Views: 6804

Re: Polynomial expression use

Thank you both. Forgot about escape parenthesis. The script works very well.

Code: Select all

-clone
by geoland
2017-06-18T18:26:23-07:00
Forum: Users
Topic: Polynomial expression use
Replies: 12
Views: 6804

Re: Polynomial expression use

Most likely a bash thing but it complains about the brackets. Removing the brackets, file max.miff is not found and is not being used. I have tried this various ways, including swapping the Max and Min order. No max.miff file visible in folder and not being used. convert \ clone 0--1 *.$ext -evaluat...
by geoland
2017-06-18T02:36:21-07:00
Forum: Users
Topic: Polynomial expression use
Replies: 12
Views: 6804

Re: Polynomial expression use

Thanks for the pointers. This is a preliminary and working bash implementation of -poly combination of multiple images, rattled up over the weekend. I am interested in any IM tweaks that might improve the process; and while my bash scripting is quite basic, I am not asking for help with the script. ...