import cognitive_face as CF
KEY = '<Subscription Key>' # Replace with a valid subscription key
(keeping the quotes in place).
CF.Key.set(KEY)
BASE_URL = 'https://westus.api.cognitive.microsoft.com/face/v1.0/' #
Replace with your regional Base URL
CF.BaseUrl.set(BASE_URL)
# You can use this example JPG or replace the URL below with your own
URL to a JPEG image.
img_url = 'https://raw.githubusercontent.com/Microsoft/Cognitive-Face-
Windows/master/Data/detection1.jpg'
faces = CF.face.detect(img_url)
print(faces)
Я пытаюсь использовать FaceAPI для анализа изображений, но как мне анализировать изображения на моем ПК, а не на URL?Я пытался изменить URL-адрес, указав путь к файлу, но мне это не удалось.