Re: color washing
Posted by
Gabriel Landini on
Jan 26, 2008; 9:56am
URL: http://imagej.273.s1.nabble.com/color-washing-tp3697443p3697446.html
On Saturday 26 January 2008, Joachim Wesner wrote:
> Is probably related to this here:
>
>
http://groups.google.com/group/comp.graphics.apps.photoshop/browse_thread/t>hread/31077866134bc537
>
>
http://learn.adobe.com/wiki/display/LR/Set+the+slide+background+-+Basics>
> Right,, Xian?
If so, this does it:
get your rgb image (image 1)
duplicate it (image 2)
convert it to greyscale
apply a sepia LUT
convert back to RGB
average image 1 and image 2
if you want more subtle colours, average this result again with image 2.
adjust brightness/contrast
As a macro:
//------
//run("Mandrill (70K)");
a=getTitle();
run("Duplicate...", "title=Image2");
run("8-bit");
run("sepia"); //sepia LUT
run("RGB Color");
imageCalculator("Average create", a,"Image2");
run("Enhance Contrast", "saturated=0.1");
run("Apply LUT");
//------
regards,
Gabriel