2010-02-04から1日間の記事一覧

OpenCV1.0ソースからインストール

まずOpenCV2.0をsudo make uninstallした。 wget http://downloads.sourceforge.net/project/opencvlibrary/opencv-unix/1.0/opencv-1.0.0.tar.gz tar -zxvf opencv-1.0.0.tar.gz cd opencv-1.0.0/ ./configure make sudo make install

template

C++

なるほどなるほど #include <stdio.h> #include <stdlib.h> #include <string> #include <iostream> using namespace std; template <class T> void foo(int i){ cout << "int:" << i << endl; } void foo(double d){ cout << "double:" << d << endl; } void foo(string s){ cout << "string:" << s << end</class></iostream></string></stdlib.h></stdio.h>…