Luxand.FSDK.ExtractFaceImage C# (CSharp) Method

ExtractFaceImage() public static method

public static ExtractFaceImage ( int Image, TPoint &FacialFeatures, int Width, int Height, int &ExtractedFaceImage, TPoint &ResizedFeatures ) : int
Image int
FacialFeatures TPoint
Width int
Height int
ExtractedFaceImage int
ResizedFeatures TPoint
return int
        public static int ExtractFaceImage(int Image, ref TPoint[] FacialFeatures, int Width, int Height, ref int ExtractedFaceImage, out TPoint[] ResizedFeatures)
        {
            ResizedFeatures = new TPoint[FSDK.FSDK_FACIAL_FEATURE_COUNT];
            return FSDK_ExtractFaceImage_Old(Image, FacialFeatures, Width, Height, ref ExtractedFaceImage, ResizedFeatures);
        }
FSDK