PythonライブラリStreamlitとAzure Face APIを使って顔を検出するところまではできたのですが、
下記のコードだと年齢が表示されません。
原因と解決策をご教示ください。
合わせて、性別の表示方法もご教示いただければ幸いです。
python
1import streamlit as st 2from PIL import Image 3 4import requests 5from PIL import Image 6from PIL import ImageDraw 7from PIL import ImageFont 8import io 9import json 10 11st.title('顔認識アプリ') 12 13with open('secret.json') as f: 14 secret_json = json.load(f) 15 16subscription_key = secret_json["SUBSCRIPTION_KEY"] 17assert subscription_key 18 19face_api_url ='https://yoshifacerec.cognitiveservices.azure.com/face/v1.0/detect' 20 21 22uploaded_file = st.file_uploader("ここにイメージを挿入",type={'jpg','png'}) 23if uploaded_file is not None: 24 img1 = Image.open(uploaded_file) 25 with io.BytesIO() as output: 26 img1.save(output,format="JPEG") 27 binary_img =output.getvalue() 28 headers = { 29 'Content-Type':'application/octet-stream', 30 'Ocp-Apim-Subscription-Key': subscription_key 31} 32 33 params = { 34 'returnFaceId':'true', 35 'returnFaceAttributes': 'age,gender,headPose,smile,facialHair,glasses,emotion,hair,makeup,occlusion,accessories,blur,exposure,noise' 36 37} 38 res =requests.post(face_api_url,params=params, 39 headers=headers,data=binary_img) 40 41 results =res.json() 42 for result in results: 43 rect =result['faceRectangle'] 44 age =result['age'] 45 46 47 draw =ImageDraw.Draw(img1) 48 draw.rectangle([(rect['left'],rect['top']),(rect['left']+rect['width'],rect['top']+rect['height'])],fill=None,outline='green',width=5) 49 50 font_size = 24 51 font_name = "C:\Windows\Fonts\meiryo.ttc" 52 src = r"pillow_test_src.png" 53 dest= r"pillow_test_dest.png" 54 draw_x = 140 55 draw_y = 120 56 text = draw.age 57 font = ImageFont.truetype(font_name, font_size) 58 59 res =requests.post(face_api_url,params=params, 60 headers=headers,data=binary_img) 61 62 st.image(img1,caption='アップロードされた写真',use_column_width=True)
エラー内容
KeyError: 'age' Traceback: File "c:\users\yoshi\anaconda3\lib\site-packages\streamlit\script_runner.py", line 332, in _run_script exec(code, module.__dict__) File "C:\Users\Yoshi\FR\FR.py", line 44, in <module> age =result['age']
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。