This package add extension method to convert Bitmap to and from Emgu objects (e.g. Mat, UMat, GpuMat)
$ dotnet add package Emgu.CV.BitmapThis package is part of the 4.6.0 release of Emgu CV.
For online documentation please visit https://www.emgu.com/wiki/files/4.6.0/document/index.html
Release note can be found at https://www.emgu.com/wiki/index.php/Version_History#Emgu.CV-4.6.0
Bitmap bmp = ... //Some bitmap object
Mat mat = bmp.ToMat() //convert Bitmap to Mat
... // modify on your Mat
Bitmap otherBmp = mat.ToBitmap(); // convert Mat to Bitmap
This package do not support mobile platforms. GDI+ is not available on iOS or Android