gpt4 book ai didi

python - 使用 Azure 和 Jupyter Notebook 进行面部识别

转载 作者:行者123 更新时间:2023-12-03 02:34:47 26 4
gpt4 key购买 nike

请问有人可以帮忙吗?我已经搜索过网络,显然是 Stackoverflow,但我仍然遇到一些看起来很容易解决但实际上并非如此的错误(无论如何对我来说)我对 python 代码教程非常陌生,在我开始尝试之前并没有真正学到很多东西创建这样的项目。请原谅我的评论!:)

%matplotlib inline
from matplotlib.pyplot import imshow
from PIL import Image
import requests
from io import BytesIO

import numpy as np
import imageio
import matplotlib.pyplot as plt
from PIL import Image

im1 = imageio.imread('DM.jpg') #Read the image from the desktop
# print(im1.shape) #Returns the number of rows, columns and channels (if image is colour returns "3")

#plt.imshow(im1)
#plt.show() !!!This works.Take away the hash tag and it will show the image!!!

#New script to try a face recognition
faceURI = "https://*****************azure.com/"
faceKey = "*********************"

import cognitive_face as CF

# Set URI and Key
CF.BaseUrl.set(faceURI)
CF.Key.set(faceKey)

# Detect faces in an image
img_url = 'DM.jpg'
result = CF.face.detect(img_url)
print (result)

所以我现在相信我哪里错了?代码中关于终点和 key 的部分不应该在那里,而应该在 bash 文件中。现在这就是我现在遇到麻烦的地方!哈哈(没有下雨,而是倾盆大雨!)。我正在尝试使用 vim,但是这是新事物,现在我正在努力解决这个问题*我自己捂脸

最佳答案

虽然我不太确定您共享的代码片段的确切要求,但我建议您阅读下面的官方示例以获取端到端指南,然后尝试在您的计算机上运行/调试这些代码示例本地机器。 (学习新东西的一种方法是使用其他人代码的大量示例:))

Quickstart: Use the Face client library

Quickstart: Detect faces in an image using the Face REST API and Python

更新:回到您的代码并跟进询问的澄清。我发现您尝试使用认知人脸 SDK 时遇到问题。我没有看到您在代码中创建 FaceClient 对象!类似于:face_client = FaceClient(ENDPOINT, CognitiveServicesCredentials(KEY))

关于python - 使用 Azure 和 Jupyter Notebook 进行面部识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63636226/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com