Instagram Image Filters on iPhone

How can I add image filters to the iPhone app? (similar to what Instagram and picplz have)

+43
objective-c iphone
Oct 13 '10 at 23:26
source share
4 answers

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

+43
Jun 19 '11 at 7:11
source share

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:

Other open source C ++ libraries:

Edit Also, look at this open source code - https://github.com/OmidH/Filtrr

+21
Nov 17 '10 at 4:21
source share

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

+2
Oct 14 2018-10-10T00:
source share

I think you can also port, most of the C code, from free image processing libraries. And then use pixel based changes.

+2
Nov 12 '10 at 9:55
source share



All Articles