All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fivefaces.cloud.face_recognition.AzureFaceAPIFaceRecognitionService Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.fivefaces.cloud.face_recognition;

import com.fivefaces.common.exception.NotImplementedException;
import org.springframework.context.annotation.Profile;
import org.springframework.stereotype.Service;

@Profile("FACE_RECOGNITION_AZURE_FACE_API")
@Service
public class AzureFaceAPIFaceRecognitionService implements FaceRecognitionService {

    @Override
    public void createFace(byte[] photo, String identifier) {
        throw new NotImplementedException();
    }

    @Override
    public String searchFaces(byte[] photo) {
        throw new NotImplementedException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy