-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from ChasonJiang/v2
v2
- Loading branch information
Showing
25 changed files
with
181 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ test/* | |
__pycache__/* | ||
visualization/*.json | ||
.vscode/* | ||
/**/__pycache__/*.pyc | ||
src/__pycache__ | ||
src/weights/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# -*- mode: python ; coding: utf-8 -*- | ||
|
||
|
||
block_cipher = None | ||
|
||
|
||
a = Analysis( | ||
['Launcher.py'], | ||
pathex=[], | ||
binaries=[], | ||
datas=[("C:\\Users\\14404\\anaconda3\\envs\\extractor\\Lib\\site-packages\\onnxruntime\\capi","onnxruntime\\capi"), | ||
("src\\weights\\HRNet.onnx","src\\weights"), | ||
("src\\weights\\FDENet_face.onnx","src\\weights"), | ||
("src\\weights\\FDENet_eyes.onnx","src\\weights"), | ||
("src\\weights\\FDENet_nose.onnx","src\\weights"), | ||
("src\\weights\\FDENet_mouth.onnx","src\\weights"), | ||
("src\\version","src"), | ||
("C:\\Users\\14404\\anaconda3\\envs\\extractor\\Lib\\site-packages\\mtcnn_ort\\onet.onnx","mtcnn_ort"), | ||
("C:\\Users\\14404\\anaconda3\\envs\\extractor\\Lib\\site-packages\\mtcnn_ort\\pnet.onnx","mtcnn_ort"), | ||
("C:\\Users\\14404\\anaconda3\\envs\\extractor\\Lib\\site-packages\\mtcnn_ort\\rnet.onnx","mtcnn_ort") | ||
], | ||
hiddenimports=[], | ||
hookspath=[], | ||
hooksconfig={}, | ||
runtime_hooks=[], | ||
excludes=[], | ||
win_no_prefer_redirects=False, | ||
win_private_assemblies=False, | ||
cipher=block_cipher, | ||
noarchive=False, | ||
) | ||
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) | ||
|
||
exe = EXE( | ||
pyz, | ||
a.scripts, | ||
a.binaries, | ||
a.zipfiles, | ||
a.datas, | ||
[], | ||
name='FDE', | ||
debug=False, | ||
bootloader_ignore_signals=False, | ||
strip=False, | ||
upx=True, | ||
upx_exclude=[], | ||
runtime_tmpdir=None, | ||
console=False, | ||
disable_windowed_traceback=False, | ||
argv_emulation=False, | ||
target_arch=None, | ||
codesign_identity=None, | ||
entitlements_file=None, | ||
) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"Version":"1.2.2", | ||
"UpdateInfo":"1. 更新了面部数据提取模型;\n2. 改进了面部和眼部的特征相似度;\n3. 1.2.0版本及以下建议更新!\n4. 加入AI捏脸交流群,免费领取人物卡。链接:https://afdian.net/item/448380d223b311ee8c9752540025c377", | ||
"Version":"2.0.0", | ||
"UpdateInfo":"0. 喜报!你关注的UP主终于更新软件啦!该版本强烈建议更新!\n1. 更新了自研的面部数据提取模型;\n2. 改善了面部轮廓、眼睛、鼻子、嘴唇的特征相似度;\n3. 可同时选择多张图片进行推理;\n4. 修复了无法连接服务器时的闪退问题。\n", | ||
"Download":{ | ||
"Github":"https://github.com/ChasonJiang/Facial-Data-Extractor/releases/latest", | ||
"BaiduNetDisk":"https://pan.baidu.com/s/1WSTzlX6bLuRahuxxDQih3A?pwd=fhuz" | ||
}, | ||
"Notice":"加入AI捏脸交流群,免费领取人物卡。\n链接:\nhttps://afdian.net/item/448380d223b311ee8c9752540025c377" | ||
"Notice":"加入官方AI捏脸交流群,免费领取人物卡。\n链接:\nhttps://afdian.net/item/448380d223b311ee8c9752540025c377" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.