0

I am about to make an OS X App for image processing. I need to implement Watershed segmentation algorithm in Objective-c, I've found some opencv c++ code snippets but I am not familiar with c++ so it's hard to make it fully functional.

Any help will be greatly appreciated.

Li Fumin
  • 1,383
  • 2
  • 15
  • 31

1 Answers1

3

It would probably be easier to learn Objective-C++ and make the few calls you need into OpenCV than reimplement it.

Here is a tutorial on using OpenCV from an iOS project using Objective-C++

https://www.objc.io/issues/21-camera-and-photos/face-recognition-with-opencv/

If you have specific questions about C++, it would be better to look them up in SO or create much more specific questions.

Lou Franco
  • 87,846
  • 14
  • 132
  • 192