So, when it comes to using the OpenCV framework (available here) in Objective-C, THIS guy says:
Well, that blows my mind, 'cause I can't seem to get it up and running. I add the framework, add a build step to my project target to copy the private framework files... but my compiler balks at the line
telling me
Which makes me feel like a n00b, which, when it comes to OpenCV, is the truth.
Do any of you out there in MacRumors-Land have any tips, or better yet, any Objective-C code that uses OpenCV?
I'd be real happy, if so...
Much respect,
beOn
Surprisingly, this task is incredibly simple. In less than 200 lines of Objective-C, Ive got a CoreVideo-based OS X application that does blob detection using OpenCV.
Well, that blows my mind, 'cause I can't seem to get it up and running. I add the framework, add a build step to my project target to copy the private framework files... but my compiler balks at the line
Code:
#import "highgui.h"
Code:
error: highgui.h: No such file or directory
Which makes me feel like a n00b, which, when it comes to OpenCV, is the truth.
Do any of you out there in MacRumors-Land have any tips, or better yet, any Objective-C code that uses OpenCV?
I'd be real happy, if so...
Much respect,
beOn