Click or drag to resize
XDL

XVideoGroup_Event_FrameFilter Delegate

동영상 그룹의 동기화 프레임 묶음을 받는 이벤트를 정의한다.

Namespace:  Pixoneer.NXDL.NXVideo
Assembly:  NXVideo (in NXVideo.dll) Version: 2.0.3.30
Syntax
C#
public delegate void XVideoGroup_Event_FrameFilter(
	XVideoGroup group,
	int count,
	XVideoChannel[] channels,
	XFramePicture[] frames,
	XFrameSensor[] sensors,
	XFrameMetad[] data
)

Parameters

group
Type: Pixoneer.NXDL.NXVideoXVideoGroup
동영상 그룹.
count
Type: SystemInt32
영상 프레임이 포함된 채널 수. 재생 시점에 따라 그룹 구성원 채널 수보다 작을 수 있다.
channels
Type: Pixoneer.NXDL.NXVideoXVideoChannel
영상 프레임이 포함된 채널 배열. 동영상 그룹의 기준 채널이 배열의 첫 원소에 저장되어 있다.
frames
Type: Pixoneer.NXDL.NXVideoXFramePicture
동기화된 영상 프레임 배열. 소속 채널과 배열 첨자가 같다.
sensors
Type: Pixoneer.NXDL.NSMXFrameSensor
동기화된 프레임 센서모델 배열. 소속 채널과 배열 첨자가 같다.
data
Type: Pixoneer.NXDL.NXVideoXFrameMetad
동기화된 메타데이터 프레임 배열. 소속 채널과 배열 첨자가 같고 메타데이터가 없는 경우 null 값으로 나타낸다.
See Also