forked from Zeyi-Lin/HivisionIDPhotos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9c7f72
commit 14698a2
Showing
11 changed files
with
40 additions
and
58 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 |
---|---|---|
@@ -1,29 +1,20 @@ | ||
{ | ||
"recommendations": [ | ||
/** | ||
* python插件 | ||
*/ | ||
"ms-python.black-formatter", | ||
"donjayamanne.python-extension-pack", | ||
"njpwerner.autodocstring", | ||
// 数据库 | ||
"qwtel.sqlite-viewer", | ||
/** | ||
* 代码协作、标记 | ||
*/ | ||
// 代码风格统一 | ||
|
||
"editorconfig.editorconfig", | ||
// 代码标记,比如TODO FIXME等 | ||
|
||
"gruntfuggly.todo-tree", | ||
// 代码协作,git协作 | ||
|
||
"eamodio.gitlens", | ||
// 其他 | ||
|
||
"PKief.material-icon-theme", | ||
"davidanson.vscode-markdownlint", | ||
"usernamehw.errorlens", | ||
"tamasfe.even-better-toml", | ||
// 单元测试 | ||
"vitest.explorer", | ||
|
||
"littlefoxteam.vscode-python-test-adapter" | ||
] | ||
} |
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,9 @@ | ||
# 代码整体介绍 | ||
|
||
HivisionIDPhoto将输出以下几个模块,方便使用者自行选择使用: | ||
|
||
1. hivision python包,HivisionIDPhoto的核心且最小输出,提供一系列sdk接口 | ||
2. gradio web服务,提供一个简单的web服务demo,方便用户体验 | ||
3. hivision docker镜像,提供一个docker镜像,方便用户部署 | ||
4. hivision.exe,提供一个windows可执行文件,方便用户使用 | ||
|
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 @@ | ||
|
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,10 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
r""" | ||
@DATE: 2024/9/5 16:45 | ||
@File: __init__.py | ||
@IDE: pycharm | ||
@Description: | ||
创建证件照 | ||
""" | ||
|
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,2 @@ | ||
gradio>=4.37.1 | ||
fastapi |
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 @@ | ||
black |
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,7 +1,3 @@ | ||
opencv-python==4.7.0.72 | ||
onnx==1.14.0 | ||
opencv-python>=4.8.1.78 | ||
onnxruntime==1.15.0 | ||
numpy==1.24.3 | ||
gradio==3.38.0 | ||
fastapi | ||
loguru |
File renamed without changes.
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,9 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
r""" | ||
@DATE: 2024/9/5 16:56 | ||
@File: build_pypi.py | ||
@IDE: pycharm | ||
@Description: | ||
构建pypi包 | ||
""" |