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