タグ

cmakeに関するsilemのブックマーク (4)

  • iPhoneでOpenCV(2.2以降)を使う – taichino.com

    以前も同じ内容を書いたのですが、OpenCVの開発は大変活発で最新版を使おうと思ったら色々つまずいたので再度エントリを書いておきます。前回はniwさんのエントリをなぞっただけだったので、今回は自力でライブラリのビルドをしました。手元の環境はSnowLeopard + iOS4.2 + OpenCVのリポジトリヘッド(2.2以降)です。 まずOpenCVは正式にiOSをサポートしていません。(androidはしてるんですが。)iOS環境では一部の機能を使えないため、使える部分を切り出してビルドするというのがiPhoneOpenCVを使うということです。使える部分を切り出してビルドをする為のスクリプトがniwさんの記事などで紹介されているのですが、構成が変わる度に他の人に頼るのはどうかという事で自力でビルドしてみようと思いました。 ライブラリの生成手順は以下になります。 CMakeを使ってX

  • Download CMake

    You can either download binaries or source code archives for the latest stable or previous release or access the current development (aka nightly) distribution through Git. This software may not be exported in violation of any U.S. export laws or regulations. For more information regarding Export Control matters, please visit our Legal page. Latest Release (3.31.0) The release was packaged with CP

    silem
    silem 2011/03/18
  • Building OpenCV for iOS « Computer Vision Talks

    OpenCV (Open Source Computer Vision) is a library of programming functions for real time computer vision. This library has a huge number of algorithms.OpenCV supports Windows and Linux platforms (and Android starting from 2.2 version). But, unfortunately, there is no official iOS platform support for this moment. In this post i will show you that can build OpenCV for this platform and run it on yo

    silem
    silem 2011/03/18
    openCVをcmakeでビルドする
  • よくわからない現代魔法 cmakeの使い方メモ

    あちらこちらでコンパイルするならcmakeが便利!ということでcmakeの勉強。何が便利ってXcodeのプロジェクトを生成できるのがすっごく便利! ただドキュメントがあんまり存在しないので(helpを見れってことらしい)最初はめんどくさい。。。以下は一応Macの場合だけど、LinuxWindowsでもほぼ問題なく動作すると思われ。 cmakeコマンド cmakeコマンドオプション cmake [オプション] パス コマンドを実行すると「CMakeCache.txt」「cmake_install.cmake」「CMakeFiles」とプロジェクトファイル(デフォルトでは「Makefile」)が生成される。ただの設定ファイルなのでCMakeLists.txtの記述が正確なら別に気にしなくてもいい。 --help-variable-list 利用できる変数一覧、「--help-variable

    silem
    silem 2011/03/18
    xcodeプロジェクトを生成
  • 1