Is there a calculator or utility out there that could generate the DeltaE between two entered Lab values? Tony -- Anthony R. Sanna SACO Foods, Inc. 1-800-373-7226 asanna@sacofoods.com
On 17 Jan 2012, at 18:25, A Sanna wrote:
Is there a calculator or utility out there that could generate the DeltaE between two entered Lab values?
Applescript? Something along the lines of: set {L1, a1, b1} to {47.79, 73.73, -2.93} set {L2, a2, b2} to {48.41, 75.54, -3.88} set dE to (((L2 - L1) ^ 2) + ((a2 - a1) ^ 2) + ((b2 - b1) ^ 2)) ^ 0.5 set dE to (dE * 100 as integer) / 100 --> 2.14 It'd only take a couple of minutes to add an interface in Xcode -- although using a spreadsheet app might be even easier. -- Martin Orpen Idea Digital Imaging Ltd
Brucelindbloom.com On Jan 17, 2012, at 10:25 AM, A Sanna <asanna@sacofoods.com> wrote:
Is there a calculator or utility out there that could generate the DeltaE between two entered Lab values?
Tony -- Anthony R. Sanna SACO Foods, Inc. 1-800-373-7226 asanna@sacofoods.com
_______________________________________________ Do not post admin requests to the list. They will be ignored. Colorsync-users mailing list (Colorsync-users@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/colorsync-users/upton%40chromix.com
This email sent to upton@chromix.com
participants (3)
-
A Sanna
-
Martin Orpen
-
Steve Upton