MegviiのFace++を使い、ディレクトリ内の画像を読み込み感情推定のプログラムを書きたいです。
公式ページからgithubへ飛びダウンロードして使おうとしましたが、画像内から顔を検知するものしかなく
顔検知のプログラムに感情推定の結果も出力させるプログラムに変えたいと考えています。
python
1# coding: utf-8 2import os 3import sys 4sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) 5 6import requests 7 8from config import API_KEY, API_SECRET, DETECT_PATH ,ANALYZE_PATH 9from example.common import get_input_file_path 10 11return_landmark = 0 12return_attributes = None 13#calculate_all = 0 14face_rectangle = '' 15beauty_score_min = 0 16beauty_score_max = 100 17 18 19def call_api(): 20 data = { 21 'api_key': API_KEY, 22 'api_secret': API_SECRET, 23 'return_gesture': return_landmark, 24 'return_attributes': return_attributes, 25 #'calculate_all': calculate_all, 26 'beauty_score_min': beauty_score_min, 27 'beauty_score_max': beauty_score_max 28 } 29 if face_rectangle: 30 data.update({'face_rectangle': face_rectangle}) 31 input_file = get_input_file_path(os.path.abspath(os.path.dirname(__file__)), 'input') 32 if not input_file: 33 print('请将input.png/input.jpg文件放在detect目录下') 34 return 35 files = { 36 'image_file': open(input_file, 'rb').read() 37 } 38 resp = requests.post(DETECT_PATH, data=data, files=files).json() 39 40 files2 = { 41 'image_file': open(input_file, 'rb').read() 42 } 43 resp2 = requests.post(ANALYZE_PATH, data=data, files=files2).json() 44 print(resp) 45 print(resp2) 46 47 48if __name__ == "__main__": 49 call_api() 50
具体的にはコード内のfiles2やresp2の箇所を追加しました。
しかし、
{'request_id': '******************', 'time_used': 33, 'faces': [{'face_token': '****************', 'face_rectangle': {'top': 189, 'left': 100, 'width': 255, 'height': 255}}], 'image_id': '*******************:==', 'face_num': 1} {'time_used': 21, 'error_message': 'VOID_REQUEST', 'request_id': '***********************:'}
というエラーが出てきてしまいます。
公式にはこのerror_message': 'VOID_REQUESTは
400 VOID_REQUEST Face analyze operation cannot be performed, when return_landmark=0, and return_attributes=none
とあり、画像の顔を検知できていないのが原因なのかなと思ったのですが、画像もしっかりと指定しているつもりです。ネットにも解決法が乗っておらず詰まっています。
何か解決方法があれば教えていただきたいです。。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/15 10:17
2020/12/15 10:32
2020/12/15 10:54