Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS: Values for CIFilter (Hue) from Photoshop

I am using the Hue filter to change the hue of an image:

CIFilter* hueFilter = 
     [CIFilter filterWithName:@"CIHueAdjust" <blah blah> 
        [NSNumber numberWithFloat:hue], nil];

I have the Hue number I wish to use from Photoshop, but it doesn't correspond to the results I get from iOS.

Is there a rule to change the number in PhotoShop to the number I should use in iOS?

like image 218
Ian Vink Avatar asked Dec 05 '22 15:12

Ian Vink


1 Answers

The Hue in HSL/HSV color mode is an angular coordinate. In Photoshop, it is given in degrees (-180 to +180).

In the CIHueAdjust filter, the angle is given in radians. From http://developer.apple.com/library/ios/#documentation/graphicsimaging/Reference/CoreImageFilterReference/Reference/reference.html#//apple_ref/doc/filter/ci/CIHueAdjust

Parameters

inputAngle

An NSNumber class whose attribute type is CIAttributeTypeAngle and whose display name is Angle.

Default value: 0.00 Minimum: 0.00 Maximum: 0.00 Slider minimum: -3.14 Slider maximum: 3.14 Identity: 0.00

The formula to go from Photoshop value (degrees) to CIHueAdjust value (radians) is a linear conversion:

filterAngle = photoshopAngle * π / 180
like image 108
LodeRunner Avatar answered Dec 23 '22 03:12

LodeRunner