Reputation: 135
Like OpenCV
I hope the library can do several simple image edit operation, like DrawLine(UiImage, startPoint, endPoint), or ConvertToGray(UiImage)
Upvotes: 0
Views: 333
Reputation: 20056
OpenCV is not meant for image editing. You can do that, but it's like buying a big track to carry your groceries from the market.
The best way to do it is to look into some already integrated image editing libraries. And as I know, in Cocoa there are several of them. CoreImage, mentioned by Dor, is one of them.
And there are some specialized image editing / UI toolkits that may help you better than OpenCV. You may check whether ImageMagik or QT are available for Mac/iOS
Upvotes: 0
Reputation: 1246
I'd suggest using OpenCV , which is a great algorithms and image processing library. Choosing Opencv would give you more future option.
Try this
Upvotes: 0
Reputation: 902
CoreImage
is the built-in image manipulation library in Cocoa.
For example: What is the best Core Image filter to produce black and white effects?
Upvotes: 1