有没有办法在使用C#的EmguCV上将System.Drawing.
Image类型的
Image转换为Emgu.CV.Image类型的Image或反之亦然?如果需要对此目的进行额外说明,我将根据您的要求进行解释.
解决方法
// Converting the master image to a bitmap Bitmap masterImage = (Bitmap) pbxMaster.Image; // Normalizing it to grayscale Image<Gray,Byte> normalizedMasterImage = new Image<Gray,Byte>(masterImage);