Ask Your Question

gbabic's profile - activity

2014-04-03 20:16:54 -0600 received badge  Teacher (source)
2013-11-03 17:31:15 -0600 commented question CvVideoCamera on iOS7

Same issue over here, currently trying to build the latest framework from source to see if that fixes the issue. Have you guys made any progress on this?

2013-10-03 21:46:44 -0600 commented question Up to date version of Mergevec.cpp?

I am having the same problem about merging the .vec files. Would really appreciate any direction on how do go about it. I will continue searching. I will post anything I find here.

2013-10-02 21:19:12 -0600 received badge  Editor (source)
2013-10-02 21:18:02 -0600 answered a question compiling on osx

Hi Antonio,

I have just jumped into OpenCV myself and am currently working on an ios project. I had some issues that were resolved by using the gnu compiler instead of the apple default.

An easy way to compile and install openCV on mac is with homebrew: (http://brew.sh) to install it just throw this into your terminal: ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"

then when homebrew is installed run the next few one by one:

brew doctor

brew tap homebrew/science

brew intall opencv

brew should install all dependencies for you etc...

hope that helps you.

2013-10-02 21:07:38 -0600 answered a question imread does not load jpg on osx

I have seen this issue before, can you try to use an absolute path to your image instead of just the name. e.g /Users/langues/path/to/your/image.jpg

Hope that helps :)