Ask Your Question

VansFannel's profile - activity

2013-02-27 05:21:42 -0600 received badge  Supporter (source)
2013-02-27 05:21:34 -0600 commented answer CvVideoCamera or not

Thanks for your answer. Where can I find CvVideoCamera source code? Thanks again.

2013-02-27 04:49:41 -0600 asked a question CvVideoCamera or not

I'm staring to develop my first OpenCV iOS application and I wondering if it is better to use AVFoundation directly instead of using CvVideoCamera (that is a wrapper for AVFoundation).

I need the maximum speed.

What do you think?

2013-02-26 07:50:09 -0600 asked a question OpenCV iOS - Video Processing: source code

Where I can find the source code for this tutorial?

Or, at least, a full project where CvVideoCamera is used?

2013-02-20 04:49:57 -0600 asked a question <tr1/random> not found while compiling OpenCV

I'm trying to compile OpenCV for iOS following these instructions.

I have installed lastest iOS SDK, and CMake version 2.8.10.2.

I've need the symbolic link but I get this error:

In file included from /Users/xxx/SourceCode/OpenCV/opencv/modules/softcascade/src/integral_channel_builder.cpp:43:
In file included from /Users/xxx/SourceCode/OpenCV/opencv/modules/softcascade/src/precomp.hpp:56:
/Users/xxx/SourceCode/OpenCV/opencv/modules/softcascade/src/_random.hpp:75:12: fatal error: 'tr1/random' file not found
#  include <tr1/random>
           ^

I have checked if the file is in my laptop, find /Developer/ -name random and this is what I get:

XXXX-MacBook-Pro:/ xxx$ find /Developer/ -name random
/Developer//Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk/usr/include/c++/4.2.1/tr1/random
/Developer//Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.1.sdk/usr/include/c++/4.2.1/tr1/random
/Developer//Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python/numpy/random
/Developer//Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/numpy/random
/Developer//Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/random
/Developer//Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/usr/include/c++/4.2.1/tr1/random
/Developer//Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python/numpy/random
/Developer//Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/numpy/random
/Developer//Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/random
/Developer//Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/usr/include/c++/4.2.1/tr1/random
/Developer//Toolchains/XcodeDefault.xctoolchain/usr/lib/c++/v1/random

What am I doing wrong?