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 Image 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: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Bitmap Bitmap { get; }
Public ReadOnly Property Bitmap As Bitmap
Get
public:
property Bitmap^ Bitmap {
Bitmap^ get ();
}
member Bitmap : Bitmap with get
Property Value
Type:
Bitmap
See Also