Click or drag to resize
XDL

XFramePictureSetDataYUV Method (Byte, Byte, Byte, Int32, Int32, Int32)

프레임 데이터를 YUV 바이트 시퀀스로 바꾼다. Y, U, V 데이터가 각각 바이트 배열로 제공되는 YUV[J]420P 형식이어야 한다.

Namespace:  Pixoneer.NXDL.NXVideo
Assembly:  NXVideo (in NXVideo.dll) Version: 1.2.817.72
Syntax
C#
public bool SetDataYUV(
	byte[] Y,
	byte[] U,
	byte[] V,
	int nXSize,
	int nYSize,
	int[] arrDataXSize
)

Parameters

Y
Type: SystemByte
[In] Y 바이트 시퀀스
U
Type: SystemByte
[In] U 바이트 시퀀스
V
Type: SystemByte
[In] V 바이트 시퀀스
nXSize
Type: SystemInt32
[In] 새 이미지 프레임의 가로 크기
nYSize
Type: SystemInt32
[In] 새 이미지 프레임의 세로 크기
arrDataXSize
Type: SystemInt32
[In] Y,U,V 각 데이터의 가로 바이트 수 배열

Return Value

Type: Boolean
프레임 데이터 변경 성공 여부
See Also