
CV
文章平均质量分 65
蚍蜉撼草木
这个作者很懒,什么都没留下…
展开
-
Python OpenCV 2.1 Ubuntu packages
Python OpenCV 2.1 Ubuntu packagesYesterday OpenCV 2.1 was released. There are not many new features, this is more a stability update. Last week I did an update of my OpenCV 2.0 Ubuntu packages so they include the new Python API. I'm happy I did this, since原创 2010-07-29 21:05:00 · 1751 阅读 · 0 评论 -
opencv:fatal error LNK1104: 无法打开文件“python26_d.lib” 问题解决
今天在Win7下,使用VS2008安装配置opencv2.1,编译结果总是24个成功,1个失败,跳过3个,错误提示是:fatal error LNK1104: 无法打开文件“python26_d.lib” ,由于错误没有生成需要的文件。错误的原因是系统安装有Python2.6,而默认的情况下Python是不提供python26_d.lib和python26_d.dll文件的。为了编译通过,需要在网上下载此二文件。优快云的下载地址请点击这里。将下载的lib文件置于X:/Program Files/Micro原创 2010-09-03 20:07:00 · 15351 阅读 · 5 评论 -
编译错误 winnt.h(236)
<br /> <br />今天编译opencv一段程序,VS报出了很让人摸不着头脑的错误,系统Win7,VS2008环境,错误信息如下:<br />1>------ 已启动生成: 项目: OpenCV, 配置: Debug Win32 ------ 1>正在编译... 1>Global.cpp 1> WINVER not defined. Defaulting to 0x0600 (Windows Vista) 1>f:/program files/microsoft sdks/windows/v6原创 2010-09-05 10:40:00 · 2471 阅读 · 2 评论 -
使用opencv简单添加文本
<br />#include "stdafx.h" #include "cv.h" #include "highgui.h" #pragma comment (lib, "cv210d.lib") #pragma comment (lib, "cvaux210d.lib") #pragma comment (lib, "cxcore210d.lib") #pragma comment (lib, "highgui210d.lib") void cvText(IplImage* img, con转载 2010-10-08 21:39:00 · 1373 阅读 · 4 评论