Luxand.FSDK.CreateEmptyImage C# (CSharp) Method

CreateEmptyImage() private method

private CreateEmptyImage ( int &Image ) : int
Image int
return int
        public static extern int CreateEmptyImage(ref int Image);

Usage Example

コード例 #1
0
 public CImage()
 {
     hImage = -1;
     CheckForError(FSDK.CreateEmptyImage(ref hImage));
     height = 0;
     width  = 0;
 }
All Usage Examples Of Luxand.FSDK::CreateEmptyImage
FSDK