AdjustHSV Function To change a color, first isolate its hue, saturation, and value by scrubbing with the Color Picker. Then scrub with the target Color Picker. For example, if you had a hue of 0 (red), and put in a hueOffset of .66, you would slide it to blue. The Range, Falloff, and Sharpness sliders help control how much of a range you capture.
Synopsis image AdjustHSV( image, float hue, float hueOffset, float hueRange, float hueFalloff, float hueSharpness, float sat, float satOffset, float satRange, float satFalloff, float satSharpness, float val, float valOffset, float valRange, float valFalloff, float valSharpness ); Script image = AdjustHSV( image, hue, hueOffset, hueRange, hueFalloff, hueSharpness, sat, satOffset, satRange, satFalloff, satSharpness, val, valOffset, valRange, valFalloff, valSharpness ); Command Line shake -adjusthsv hue hueOffset hueRange etc... |