views:

56

answers:

3

Can anyone suggest good image processing tutorials/books to start, on Mac using objective-c?

+3  A: 

That depends on what you mean by "image processing." For basic manipulation, see NSImage class and the Cocoa Drawing Guide. For advanced topics, see the Core Image Programming Guide.

Joshua Nozzi
+1  A: 

If you want to experiment with Core Image, use the Quartz Composer application to write your GL shaders. You'll be able to see the effects of changes to your code instantaneously.

NSResponder
A: 

Try http://www.imagemagick.org/script/index.php

Waleed
It's pretty clear the OP wanted to achieve this programmatically with Cocoa/Objective-C.
Joshua Nozzi