Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 Image< Bgr,Byte > 转换为 Image?
先感谢您。
Image 类有一个 .ToBitmap() 方法。
所以它应该很简单
image1.ToBitmap();
您可以简单地使用 Emgu Image 的 Bitmap 属性。
Image<Bgr,Byte> img = .... Bitmap bmp = img.ToBitmap();