C# 클래스 OpenCvSharp.Extensions.BitmapConverter

static class which provides conversion between System.Drawing.Bitmap and Mat
파일 보기 프로젝트 열기: shimat/opencvsharp

공개 메소드들

메소드 설명
ToBitmap ( this src ) : Bitmap

Converts Mat to System.Drawing.Bitmap

ToBitmap ( this src, PixelFormat pf ) : Bitmap

Converts Mat to System.Drawing.Bitmap

ToBitmap ( this src, Bitmap dst ) : void

Converts Mat to System.Drawing.Bitmap

Author: shimat, Gummo (ROI support)

ToMat ( this src ) : Mat

Converts System.Drawing.Bitmap to Mat

ToMat ( this src, Mat dst ) : void

Converts System.Drawing.Bitmap to Mat

메소드 상세

ToBitmap() 공개 정적인 메소드

Converts Mat to System.Drawing.Bitmap
public static ToBitmap ( this src ) : Bitmap
src this Mat
리턴 System.Drawing.Bitmap

ToBitmap() 공개 정적인 메소드

Converts Mat to System.Drawing.Bitmap
public static ToBitmap ( this src, PixelFormat pf ) : Bitmap
src this Mat
pf PixelFormat Pixel Depth
리턴 System.Drawing.Bitmap

ToBitmap() 공개 정적인 메소드

Converts Mat to System.Drawing.Bitmap
Author: shimat, Gummo (ROI support)
public static ToBitmap ( this src, Bitmap dst ) : void
src this Mat
dst System.Drawing.Bitmap Mat
리턴 void

ToMat() 공개 정적인 메소드

Converts System.Drawing.Bitmap to Mat
public static ToMat ( this src ) : Mat
src this System.Drawing.Bitmap object to be converted
리턴 Mat

ToMat() 공개 정적인 메소드

Converts System.Drawing.Bitmap to Mat
public static ToMat ( this src, Mat dst ) : void
src this System.Drawing.Bitmap object to be converted
dst Mat A Mat object which is converted from System.Drawing.Bitmap
리턴 void