Click or drag to resize
XDL

XVideo_Event_MosaicUpdate Delegate

동영상 모자이크 갱신 결과를 알리는 이벤트를 정의한다.

Namespace:  Pixoneer.NXDL.NXVideo
Assembly:  NXVideo (in NXVideo.dll) Version: 2.0.3.31
Syntax
C#
public delegate void XVideo_Event_MosaicUpdate(
	long pts,
	int width,
	int height,
	byte[] r,
	byte[] g,
	byte[] b,
	eVideoMosaicMode mode
)

Parameters

pts
Type: SystemInt64
최근에 모자이크 영상에 추가된 영상 프레임 PTS.
width
Type: SystemInt32
모자이크 영상 가로 크기.
height
Type: SystemInt32
모자이크 영상 세로 크기.
r
Type: SystemByte
모자이크 영상의 적색 바이트 배열. (가로 크기)*(세로 크기) 만큼의 길이를 가진다.
g
Type: SystemByte
모자이크 영상의 녹색 바이트 배열. (가로 크기)*(세로 크기) 만큼의 길이를 가진다.
b
Type: SystemByte
모자이크 영상의 청색 바이트 배열. (가로 크기)*(세로 크기) 만큼의 길이를 가진다.
mode
Type: Pixoneer.NXDL.NXVideoeVideoMosaicMode
모자이크 영상의 갱신 모드를 나타낸다.
See Also