/** * CvBase demo. * * If you have installed opencv libraries system-wide, and have pkg-config * (default on most modern Linux, available but not default on Windows and OS * X), build like this: * * g++ -o cvdemo cvbase.cpp cvdemo.cpp `pkg-config --cflags --libs opencv` * * Otherwise, replace the part in backquotes with * * -Iprefix/include/opencv -Lprefix/lib -lml -lcvaux -lhighgui -lcv -lcxcore * * where prefix is the base path where you installed the opencv development * binaries (e.g. /usr/local, or somewhere under your homedir). * * Tested on: * * ubuntu 10.04 + opencv 2.1.0 src + libv4l-dev * * @author vona **/ #include "cvbase.hpp" #include using namespace std; /** Program entry point. **/ int main(int argc, char *argv[]) { CvBase b("cvdemo"); cout<<"ate "<