OpenCV - Open Computer Vision Library †
Contents †
Status †
Infromation †
Tips †There is no lib files in lib directory in version 2.0 †We must rebuild opencv2.0 by using cmake.
Camera Capture †
C++ Interface †C++ interface is included in 2.0 (Buggy). Other C#/C++ Wrapper
PROBLEM (2009/05/13) : Compilation Error on OpenCV_1.1pre1a.exe †Version OpenCV_1.1pre1a cannot be build in some language environment Windows PC. It's because that there are some locale dependent characters in source code. Especially in cvaux.h , foregound_region declaration is commented out by this character. In current svn version ,this problem is already fixed. see line 1167 C:\Program Files\OpenCV\cvaux\include\cvaux.h Package 1159 #define CV_BG_STAT_MODEL_FIELDS() \ 1160 int type; /*type of BG model*/ \ 1161 CvReleaseBGStatModel release; \ 1162 CvUpdateBGStatModel update; \ 1163 IplImage* background; /*8UC3 reference background image*/ \ 1164 IplImage* foreground; /*8UC1 foreground image*/ \ 1165 IplImage** layers; /*8UC3 reference background image, can be null */ \ 1166 int layer_count; /* can be zero */ \ 1167 CvMemStorage* storage; /*storage for 吐oreground_regions・/ \ 1168 CvSeq* foreground_regions /*foreground object contours*/ 1159 #define CV_BG_STAT_MODEL_FIELDS() \ 1160 int type; /*type of BG model*/ \ 1161 CvReleaseBGStatModel release; \ 1162 CvUpdateBGStatModel update; \ 1163 IplImage* background; /*8UC3 reference background image*/ \ 1164 IplImage* foreground; /*8UC1 foreground image*/ \ 1165 IplImage** layers; /*8UC3 reference background image, can be null */ \ 1166 int layer_count; /* can be zero */ \ 1167 CvMemStorage* storage; /*storage for foreground_regions*/ \ 1168 CvSeq* foreground_regions /*foreground object contours*/ see also (Chinese) http://hi.baidu.com/baodao/blog/item/bff63b01c73e590d7bec2c41.html |