Converts IplImage to WriteableBitmap.
The arguments of this method corresponds the consructor of WriteableBitmap.
Namespace: OpenCvSharp.Extensions
Assembly: OpenCvSharp.Extensions (in OpenCvSharp.Extensions.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static WriteableBitmap ToWriteableBitmap( this IplImage src, double dpiX, double dpiY, PixelFormat pf, BitmapPalette bp )
Parameters
- src
- Type: OpenCvSharpIplImage
Input IplImage - dpiX
- Type: SystemDouble
Horizontal dots per inch - dpiY
- Type: SystemDouble
Vertical dots per inch - pf
- Type: System.Windows.MediaPixelFormat
Pixel format of output WriteableBitmap - bp
- Type: System.Windows.Media.ImagingBitmapPalette
Bitmap pallette
Return Value
Type: WriteableBitmapWriteableBitmap
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IplImage. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also