Welcome to the website of CVLab!

Computer Vision Laboratory (CVLAB) of the Graduate school of Systems and Information Engineering at the University of Tsukuba by Professor Kazuhiro Fukui.
Cvlab’s Datasets and Source Code

In CVLAb we study the field of Computer Vision.
In this section you will be able to find the latest Datasets, Source Codes and Papers developed in our laboratory, and download them for Educational purposes under the license of creative commons.

Lectures and Publications

Find a list of our publications in International Conferences, Domestic Conferences and Journal Papers, as well as detailed information about aur lectures at University of Tsukuba.

Become a part of Cvlab

In CVLAB we are always looking for motivated students to help us with our efforts.

If you would like to join our lab, please get in touch with us through the contact section or contact a member of our staff.

News

In this section you can find all the news related with our Lab's activities:

06 December, 2007

2011年度 主専攻実験 OpenCVのインストール

2011年度 主専攻実験
OpenCVのインストール


OpenCV 2.3.1のインストール

2011/9/14現在、OpenCVの最新版はver.2.3.1です。

簡易インストール手順(通常はこちら)
  1. Open Computer Vision Libraryから"View all files" > "opencv-win" > "2.3" > "OpenCV-2.3.1-win-superpack.exe"をダウンロードし、実行。ファイルの解凍を"H:\"で行い、ディレクトリ名を"OpenCV2.3"に変更する

  2. 環境変数を設定する
    1. スタートメニューから、コンピュータを右クリック
    2. プロパティを選択
    3. システムの詳細設定を選択
    4. 環境変数ボタンをクリック
    5. ユーザー環境変数に、変数名"Path"、変数値"H:\OpenCV2.3\bin;"を新規作成(または追加)する

  3. コンピュータをログオフして再ログイン

動作確認

  1. Visual Studio 2005を起動後、新規にプロジェクトを作成する
    • "ファイル" > "新規作成" > "プロジェクト"
    • "プロジェクトの種類"を"Visual C++" > "Win32"、テンプレートを"Win32 コンソール アプリケーション"
    • プロジェクト名は適当(test)
    • "場所"はH:\のどこか(H:\projects\)
    • "ソリューションのディレクトリを作成"のチェックは外す
    • "OK" > "次へ"、"空のプロジェクト"にチェックを入れて"完了"

  2. プロジェクトにOpenCVのパスを設定する
    • プロジェクトを開いた状態で、メニューから"プロジェクト" > "(プロジェクト名)のプロパティ"
    • "構成"を"すべての構成"にする
    • "構成プロパティ" > "C/C++"を選択し、"追加のインクルードディレクトリ"に次の項目を設定。"構成プロパティ" > "C/C++"が見つからない場合は、プロジェクトにC++ファイルを追加してから設定する。
      • H:\OpenCV2.3\include\opencv
    • "構成プロパティ" > "リンカ"を選択し、"追加のライブラリディレクトリ"に次の項目を設定
      • H:\OpenCV2.3\lib
    • "適用"して"OK"

  3. サンプルプログラムを実行する
    • メニューから"プロジェクト" > "新しい項目の追加"
    • "C++ファイル(.cpp)"を選択し、適当なファイル名(test.cpp)を入力して"OK"
    • 以下のプログラムをコピーして実行すると、USBカメラの画像を取り込んで表示する