问题描述
我综合我的项目上的Visual Studio 2010 Emgu 3.0和我工作的检测对象的项目,但是当我使用MCvFont像下面这行,我得到的错误,因为库丢失,该库是从去除或Emgu的最后一个版本是什么?
MCvFont F2 =新MCvFont(Emgu.CV.CvEnum.FONT.CV_FONT_HERSHEY_TRIPLEX,1.0,1.0 );
Emgu.CV.CvEnum .FONT.CV_FONT_HERSHEY_TRIPLEX
可 Emgu.CV.CvEnum.FontFace.HersheyTriplex
在Emgu 3.0。
MCvFont
在目前的 Emgu.CV.Structure
在Emgu_2.4.10,
,但它缺少在Emgu_3.0.0。我在emgu版本历史记录检查这一点。
您可以医治添加此代码从Emgu_2.4.10,
抓引用Emgu.CV这个DLL的
指令转换2.4 .X代码3.0可以发现
你做脸和眼识别?
这是我第一次计算器回答:)
I integrated my project on Visual Studio 2010 with Emgu 3.0 and I'm working on detection object project , but when I'm using MCvFont like the following line I get error because the library is missing , This library is removed from the last version of Emgu or what ?
MCvFont f2 = new MCvFont(Emgu.CV.CvEnum.FONT.CV_FONT_HERSHEY_TRIPLEX, 1.0, 1.0);
Emgu.CV.CvEnum.FONT.CV_FONT_HERSHEY_TRIPLEX
can be Emgu.CV.CvEnum.FontFace.HersheyTriplex
in Emgu 3.0.
MCvFont
present in Emgu.CV.Structure
at Emgu_2.4.10,but it missing at Emgu_3.0.0. I checked this in emgu version history.
You can heal this code by add to reference Emgu.CV from Emgu_2.4.10,catch this dll https://dropmefiles.com/AZvmM
Instruction to convert 2.4.x code to 3.0 can be found http://www.emgu.com/wiki/index.php/Tutorial#Upgrading_from_Emgu_CV_2.x_to_3.x
Do you making face or eyes recognition?This is my first answer at stackoverflow :)
这篇关于MCvFont库丢失在Emgu 3.0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!