overbet13
overbet13

Reputation: 1674

Warp filter on iOS

I am trying to create a warp filter in objective c, just like this one in java. I'm having a hard time with it. Anyone could help me with some ideas how to begin in general? The answer is not expected to be iOS specific.

Upvotes: 1

Views: 920

Answers (2)

The Kraken
The Kraken

Reputation: 3158

You're going to want to check out the Core Image Programming Guide for iOS and OS X. Using Core Image is really the easiest way to apply filters on iOS. Here you'll find all the information on how to use Apple's filters and how to write your own. In the Core Image Filter Reference, also check out CIParallelogramTile. If you have a Mac version of your app, this filter might be a good option to explore. This particular filter is not supported on iOS, but many other similar ones are available in the CI Programming Guide.

Upvotes: 1

Oleksandr Matrosov
Oleksandr Matrosov

Reputation: 27113

Core Image does not provide the ability to support Warp filter for iOS platform. This features is available for Mac OS platform only.

Upvotes: 0

Related Questions