-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.py
More file actions
15 lines (13 loc) · 802 Bytes
/
config.py
File metadata and controls
15 lines (13 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# coding: utf-8
# NOTE: 请替换成您在face++人工智能开放平台控制台创建的API_KEY和API_SECRET
API_KEY = ''
API_SECRET = ''
BEAUTIFY_PATH = 'https://api-cn.faceplusplus.com/facepp/v1/beautify'
MERGEFACE_PATH = 'https://api-cn.faceplusplus.com/imagepp/v1/mergeface'
SEGMENT_PATH = 'https://api-cn.faceplusplus.com/humanbodypp/v2/segment'
GESTURE_PATH = 'https://api-cn.faceplusplus.com/humanbodypp/v1/gesture'
SKELETON_PATH = 'https://api-cn.faceplusplus.com/humanbodypp/v1/skeleton'
THOUSANDLANDMARK_PATH = 'https://api-cn.faceplusplus.com/facepp/v1/face/thousandlandmark'
DETECT_PATH = 'https://api-cn.faceplusplus.com/facepp/v3/detect'
SEARCH_PATH = 'https://api-cn.faceplusplus.com/facepp/v3/search'
FACESET_CREATE_PATH = 'https://api-cn.faceplusplus.com/facepp/v3/faceset/create'