How can I add image filters to the iPhone app? (similar to what Instagram and picplz have)
People,
I tried to replicate instagram and photoshop filters using pure CoreGraphics and direct pixel manipulation without using OpenGL.
Find this project at:
https://github.com/esilverberg/ios-image-filters
** UPDATE **
You should also consider this project: https://github.com/gobackspaces/DLCImagePickerController
Have you tagged simple-iphone-image-processing ? This is a βsimple C ++ class with an Objective-C wrapper that provides a set of common image processing tasks,β as well as a UIImage transform. It provides:
UIImage
Other open source C ++ libraries:
Edit Also, look at this open source code - https://github.com/OmidH/Filtrr
Unfortunately, there is no CoreImage library in the iOS SDK, so you need to use OpenGLES for image processing, Apple has an example application that demonstrates several methods.
http://developer.apple.com/library/ios/#samplecode/GLImageProcessing/Introduction/Intro.html
I think you can also port, most of the C code, from free image processing libraries. And then use pixel based changes.