我正在尝试将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);
但是得到了这些错误:
当前上下文中不存在名称“pbxMaster”。
字段初始值设定项无法引用非静态字段,方法或属性'ContourAnalysisDemo.MainForm.masterImage'
我在这里想念的是什么?