softempire
softempire

Reputation: 135

Is there some easy use image processing/editing library for Cocoa?

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

Answers (3)

Sam
Sam

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

TripleS
TripleS

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

Dor
Dor

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

Related Questions