Я пытаюсь запустить свой код, чтобы сравнить сходства между двумя лицами, но не смог получить вывод - PullRequest
0 голосов
/ 20 октября 2019

Когда я запускаю свой код, он работает нормально, но проблема в том, что я получаю пустой вывод.

"Это приложение, которое я хочу создать, чтобы я мог определить, будут ли следующие два лицаимеют одно и то же лицо или различаются. "


import json

from facepplib import FacePP, exceptions

face_detection=""
faceset_initialize=""
face_search=""
face_landmarks=""
dense_facial_landmarks=""
face_attributes=""
beauty_score_and_emotion_recognition=""

def face_comparing(app):
    """
    Compare two faces and decide whether they are from the same person.

    """
    print('[Face Comparing]')

    #1) Compare two images of websiite:
    img_url1 ='https://ibb.co/bv2zdgP'
    img_url2 ='https://ibb.co/m49ZDQ1'

    #2) Compare two local drivve images:
    #img_url1=
     #img_url2=

    cmp_ = app.compare.get(image_url1=img_url1,image_url2=img_url2)

    print('image1' , '=' , cmp_.image1)
    print('image2' , '=' , cmp_.image2)

    print('thresholds', '=', json.dumps(cmp_.thresholds, indent=4))
    print('confidence', '=', cmp_.confidence)

    if cmp_.confidence>70:
         print('Both faces are same')

    else:
        print('Both Faces are different')


if __name__ == '_main__':

        api_key  ='xQLsTmMyqp1L2MIt7M310h-cQiy0Dwhl'
        api_secret ='TyBSGw8NBEP9Tbhv_JbQM18mIlorY6-D'
        app_ = FacePP(api_key=api_key, api_secret=api_secret)

        funcs = [
            face_detection,
            faceset_initialize,
            face_search,
            face_landmarks,
            dense_facial_landmarks,
            face_attributes,
            beauty_score_and_emotion_recognition

        ]
        face_comparing(app_)

        try:

            app_ = FacePP(api_key=api_key, api_secret=api_secret)

            funcs = [
                face_detection,
            faceset_initialize,
            face_search,
            face_landmarks,
            dense_facial_landmarks,
            face_attributes,
            beauty_score_and_emotion_recognition

            ]
            face_comparing(app_)

        except exceptions.BaseFacePPError as e:
            print('Error:',e)

C: \ Users \ siddi \ AppData \ Local \ Programs \ Python \ Python37-32 \ python.exe C: /Users/siddi/.PyCharmCE2019. 2 / config / scratches / scratch_2.py

Процесс завершен с кодом выхода 0

...