为什么从Bitmap转换为EmguCV Image不起作用?

时间:2015-09-08 04:15:37

标签: c# image bitmap emgucv

我正在尝试将Bitmap转换为EmguCV Image以在ImageBox中加载我的图片。

但是我收到了这个错误: 无法将类型'System.Drawing.Bitmap'隐式转换为'Emgu.CV.IImage'

然后我在SO中做了一些研究之后尝试了以下语法:

Bitmap masterImage = (Bitmap)pbxMaster.Image;
Image<Gray, Byte> normalizedMasterImage = new Image<Gray, Byte>(masterImage);

但是得到了这些错误:

  1. 当前上下文中不存在名称“pbxMaster”。

  2. 字段初始值设定项无法引用非静态字段,方法或属性'ContourAnalysisDemo.MainForm.masterImage'

  3. 我在这里想念的是什么?

0 个答案:

没有答案