c# – 将System.Drawing.Image转换为Emgu.CV.Image

前端之家收集整理的这篇文章主要介绍了c# – 将System.Drawing.Image转换为Emgu.CV.Image前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在使用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);
原文链接:https://www.f2er.com/csharp/243712.html

猜你在找的C#相关文章