|
XVideo_Event_MosaicUpdate Delegate
|
동영상 모자이크 갱신 결과를 알리는 이벤트를 정의한다.
Namespace: Pixoneer.NXDL.NXVideoAssembly: NXVideo (in NXVideo.dll) Version: 2.0.3.38
Syntaxpublic delegate void XVideo_Event_MosaicUpdate(
long pts,
int width,
int height,
byte[] r,
byte[] g,
byte[] b,
eVideoMosaicMode mode
)
Parameters
- pts Int64
- 최근에 모자이크 영상에 추가된 영상 프레임 PTS.
- width Int32
- 모자이크 영상 가로 크기.
- height Int32
- 모자이크 영상 세로 크기.
- r Byte
- 모자이크 영상의 적색 바이트 배열. (가로 크기)*(세로 크기) 만큼의 길이를 가진다.
- g Byte
- 모자이크 영상의 녹색 바이트 배열. (가로 크기)*(세로 크기) 만큼의 길이를 가진다.
- b Byte
- 모자이크 영상의 청색 바이트 배열. (가로 크기)*(세로 크기) 만큼의 길이를 가진다.
- mode eVideoMosaicMode
- 모자이크 영상의 갱신 모드를 나타낸다.
See Also