Prashant Cholachagudda
Prashant Cholachagudda

Reputation: 13092

Image processing resources on Mac with objective-c

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

Upvotes: 0

Views: 2192

Answers (2)

NSResponder
NSResponder

Reputation: 16857

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.

Upvotes: 1

Joshua Nozzi
Joshua Nozzi

Reputation: 61228

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.

Upvotes: 3

Related Questions