ImageTColor, TDepthBitmap Property |
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 virtual Bitmap Bitmap { get; set; }
Public Overridable Property Bitmap As Bitmap
Get
Set
public:
virtual property Bitmap^ Bitmap {
Bitmap^ get ();
void set (Bitmap^ value);
}
abstract Bitmap : Bitmap with get, set
override Bitmap : Bitmap with get, set
Property Value
Type:
Bitmap
See Also