niw / iphone_opencv_test

Test application for iPhone with OpenCV library

This URL has Read+Write access

name age message
file .authors Thu Mar 05 10:08:27 -0800 2009 Migrate from SVN repository, adding git specifi... [niw]
file .gitignore Loading commit data...
directory Classes/ Thu Dec 25 13:21:38 -0800 2008 * New Icon, Default * Adding progressHUD * S... [niw]
file Default.png Fri Dec 26 04:11:45 -0800 2008 * update icon, default git-svn-id: svn+ssh:/... [niw]
file Default_source.png Fri Dec 26 04:11:45 -0800 2008 * update icon, default git-svn-id: svn+ssh:/... [niw]
file Icon.png Mon Jan 05 10:53:18 -0800 2009 * FIX: Icon background * FIX: Window backgrou... [niw]
file Icon_source.png Mon Jan 05 10:53:18 -0800 2009 * FIX: Icon background * FIX: Window backgrou... [niw]
file Info.plist Mon Jul 28 09:23:01 -0700 2008 * missing file git-svn-id: svn+ssh://svn.dot... [niw]
file MIT-LICENSE.txt Sun May 31 06:43:23 -0700 2009 Add license file These source code are under M... [niw]
file MainWindow.xib Mon Jan 05 10:53:18 -0800 2009 * FIX: Icon background * FIX: Window backgrou... [niw]
directory OpenCVTest.xcodeproj/
file OpenCVTest_Prefix.pch Mon Jul 28 05:10:14 -0700 2008 * Using OpenCV on iPhone * Static link versio... [niw]
file README.md
file Tink.aiff Thu Dec 25 13:21:50 -0800 2008 * Missing file git-svn-id: svn+ssh://svn.dot... [niw]
file configure_opencv
file cvcalibration.cpp.patch_opencv-1.1.0 Sat Nov 14 22:19:31 -0800 2009 Add patch [niw]
file cvcalibration.cpp.patch_opencv-2.0.0 Sat Nov 14 22:19:31 -0800 2009 Add patch [niw]
file laughing_man.ai Mon Jul 28 19:55:40 -0700 2008 * add laughing man mode git-svn-id: svn+ssh:... [niw]
file laughing_man.png Mon Jul 28 19:55:40 -0700 2008 * add laughing man mode git-svn-id: svn+ssh:... [niw]
file lena.jpg Mon Jul 28 05:10:14 -0700 2008 * Using OpenCV on iPhone * Static link versio... [niw]
file main.m Mon Jul 28 05:10:14 -0700 2008 * Using OpenCV on iPhone * Static link versio... [niw]
directory opencv_device/
directory opencv_simulator/
README.md

Using OpenCV on iPhone

This source repository includes pre-compiled OpenCV library and headeres so that you can get started easily! see /opencv_arm6 for iPhone device and /opencv_sim for iPhone simulator(for Intel Mac only).

Building Static Link Version of OpenCV

If you want to build it from source code, you can do by next steps.

  1. Getting source code from sourceforge. I tested with opencv-1.1pre1.tar.gz.

  2. Extract tar.gz in the top of project dir

    % tar xzvf opencv-1.1pre1.tar.gz
    
  3. Edit opencv_build_scripts/configure_*.sh for your enviroment(--prefix etc...) if need

  4. Build for each platforms(armv6, sim)

    % cd opencv-1.1.0
    % mkdir build_(platform)
    % pushd build_(platform)
    % ../../opencv_build_scripts/configure_(platform).sh
    % make
    % make install
    % popd