C# 클래스 OpenCvSharp.UserInterface.CvWindowEx

Original CvWindow implementation without highgui
상속: System.Windows.Forms.Form, IDisposable
파일 보기 프로젝트 열기: shimat/opencvsharp 1 사용 예제들

공개 메소드들

메소드 설명
CreateTrackbar ( string name, int value, int count, CvTrackbarCallback onChange ) : TrackbarWithLabel

Creates the trackbar and attaches it to this window

CvWindowEx ( Mat image ) : System

Constructor

CvWindowEx ( Mat image, PictureBoxSizeMode sizeMode ) : System

Constructor

CvWindowEx ( PictureBoxSizeMode sizeMode ) : System

Constructor

Dispose ( ) : void

Finalizer

ShowImage ( Mat image ) : void

Shows the image in this window

ShowImages ( ) : void

WaitKey ( ) : Keys

Waits for a pressed key

WaitKey ( int delay ) : Keys

Waits for a pressed key

비공개 메소드들

메소드 설명
ClosedAllWindows ( ) : bool

CvWindowEx ( ) : System

static constructor

CvWindowEx_KeyDown ( object sender, KeyEventArgs e ) : void
EndKeyCheck ( ) : void

GetPressedKey ( ) : Keys

SetClientSize ( System size ) : void

ClientSizeを画面からはみ出ない大きさに調整して設定する.

StartKeyCheck ( ) : void

메소드 상세

CreateTrackbar() 공개 메소드

Creates the trackbar and attaches it to this window
public CreateTrackbar ( string name, int value, int count, CvTrackbarCallback onChange ) : TrackbarWithLabel
name string Name of created trackbar.
value int The position of the slider
count int Maximal position of the slider. Minimal position is always 0.
onChange CvTrackbarCallback the function to be called every time the slider changes the position. This function should be prototyped as void Foo(int);
리턴 TrackbarWithLabel

CvWindowEx() 공개 메소드

Constructor
public CvWindowEx ( Mat image ) : System
image Mat
리턴 System

CvWindowEx() 공개 메소드

Constructor
public CvWindowEx ( Mat image, PictureBoxSizeMode sizeMode ) : System
image Mat
sizeMode PictureBoxSizeMode
리턴 System

CvWindowEx() 공개 메소드

Constructor
public CvWindowEx ( PictureBoxSizeMode sizeMode ) : System
sizeMode PictureBoxSizeMode
리턴 System

Dispose() 공개 메소드

Finalizer
public Dispose ( ) : void
리턴 void

ShowImage() 공개 메소드

Shows the image in this window
public ShowImage ( Mat image ) : void
image Mat Image to be shown.
리턴 void

ShowImages() 정적인 공개 메소드

static public ShowImages ( ) : void
리턴 void

WaitKey() 공개 정적인 메소드

Waits for a pressed key
public static WaitKey ( ) : Keys
리턴 Keys

WaitKey() 공개 정적인 메소드

Waits for a pressed key
public static WaitKey ( int delay ) : Keys
delay int
리턴 Keys