Page 1 of 1

Rawtherapee 'Contrast by detail levels'

Posted: 2015-03-30T14:13:10-07:00
by robertkjr3d
How do I mimic this functionality in Magick.NET?
0 is Finest 4 is (Coarsest)
When messing around with particular CR2s. I find that I can find more detail with this contrast function in my images. Particularly 3 and 4 (coarsest). But I don't know what to look for in Magick.NET, for anything similar.

Re: Rawtherapee 'Contrast by detail levels'

Posted: 2015-03-30T14:40:51-07:00
by fmw42
robertkjr3d wrote:How do I mimic this functionality in Magick.NET?
0 is Finest 4 is (Coarsest)
When messing around with particular CR2s. I find that I can find more detail with this contrast function in my images. Particularly 3 and 4 (coarsest). But I don't know what to look for in Magick.NET, for anything similar.

What is the function you need to mimic? Perhaps is you give some detail and background, someone might be able to help. Contrast is not a well defined unique entity. There are many variations. IM has -contrast and -brightness-contrast and -level and -sigmoidal-contrast and contrast-stretch and several others. See http://www.imagemagick.org/script/comma ... ptions.php and http://www.imagemagick.org/Usage/color_mods/

Please also read viewtopic.php?f=1&t=9620

Re: Rawtherapee 'Contrast by detail levels'

Posted: 2015-03-30T14:45:09-07:00
by robertkjr3d
http://libregraphicsworld.org/blog/entr ... erapee-3-0
Scroll down to 'Contrast by detail levels'

Re: Rawtherapee 'Contrast by detail levels'

Posted: 2015-03-30T14:48:35-07:00
by fmw42
robertkjr3d wrote:http://libregraphicsworld.org/blog/entr ... erapee-3-0
Scroll down to 'Contrast by detail levels'
IM does not have any wavelet decomposition/recomposition tool, currently.

The closest you could come in IM is to do Gaussian/Laplacian Pyramid processing to get multi-resolution levels. see http://en.wikipedia.org/wiki/Gaussian_pyramid. IM has Gaussian blurring and Laplacian sharpening.

Some while ago I tried to script Haar Wavelets (unix bash shell script), but never finished it.

Re: Rawtherapee 'Contrast by detail levels'

Posted: 2015-03-30T15:45:16-07:00
by robertkjr3d
And Magick.NET I can't seem to find laplacian sharpen.

Re: Rawtherapee 'Contrast by detail levels'

Posted: 2015-03-30T16:50:19-07:00
by fmw42
robertkjr3d wrote:And Magick.NET I can't seem to find laplacian sharpen.
In the command line it is part of -morphology/convolution. See http://www.imagemagick.org/Usage/convolve/

Re: Rawtherapee 'Contrast by detail levels'

Posted: 2015-03-30T17:33:39-07:00
by robertkjr3d
I've seen those neat command-line scripts. Except.. how to execute in Magick.NET?
image.Execute does not. What is the trick I'm missing? Is there a documentation I'm missing?

Re: Rawtherapee 'Contrast by detail levels'

Posted: 2015-03-30T20:58:36-07:00
by fmw42
robertkjr3d wrote:I've seen those neat command-line scripts. Except.. how to execute in Magick.NET?
image.Execute does not. What is the trick I'm missing? Is there a documentation I'm missing?
My scripts only work on Unix/Linux/MacOSX and Windows with Cygwin. Sorry.

Re: Rawtherapee 'Contrast by detail levels'

Posted: 2015-03-31T02:37:38-07:00
by dlemstra
Which script do you want to translate to .NET? I might be able to help you.