http://www.emgu.com
The Get property provide a more efficient way to convert Image<Gray, Byte>, Image<Bgr, Byte> and Image<Bgra, Byte> into Bitmap
such that the image data is shared with Bitmap.
If you change the pixel value on the Bitmap, you change the pixel values on the Image object as well!
For other types of image this property has the same effect as ToBitmap()
Take extra caution not to use the Bitmap after the Mat object is disposed
The Set property convert the bitmap to this Image type.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic Bitmap Bitmap { get; }
Public ReadOnly Property Bitmap As Bitmap
Get
public:
virtual property Bitmap^ Bitmap {
Bitmap^ get () sealed;
}
abstract Bitmap : Bitmap with get
override Bitmap : Bitmap with get
Property Value
Type:
BitmapImplements
IImageBitmap
See Also