public FaceFeatures ExtractFaceFeatures(string photoPath) { var normPhoto = Preprocessing.PreprocessImage(photoPath); var faceComponents = componentExtractor.ExtractComponentsFromImage(normPhoto); return(ExtractFaceFeatures(faceComponents, featureExtractors)); }