12 changed files with 149 additions and 15 deletions
@ -0,0 +1,6 @@ |
|||
node_modules |
|||
dist |
|||
build |
|||
out |
|||
*.log* |
|||
package-lock.json |
@ -0,0 +1,63 @@ |
|||
# -*- mode: python ; coding: utf-8 -*- |
|||
from PyInstaller.utils.hooks import collect_all |
|||
|
|||
datas = [] |
|||
binaries = [] |
|||
hiddenimports = [] |
|||
tmp_ret = collect_all('paddleocr') |
|||
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2] |
|||
tmp_ret = collect_all('pyclipper') |
|||
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2] |
|||
tmp_ret = collect_all('imghdr') |
|||
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2] |
|||
tmp_ret = collect_all('skimage') |
|||
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2] |
|||
tmp_ret = collect_all('imgaug') |
|||
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2] |
|||
tmp_ret = collect_all('scipy.io') |
|||
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2] |
|||
tmp_ret = collect_all('lmdb') |
|||
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2] |
|||
|
|||
|
|||
a = Analysis( |
|||
['main.py'], |
|||
pathex=[], |
|||
binaries=binaries, |
|||
datas=datas, |
|||
hiddenimports=hiddenimports, |
|||
hookspath=[], |
|||
hooksconfig={}, |
|||
runtime_hooks=[], |
|||
excludes=[], |
|||
noarchive=False, |
|||
optimize=0, |
|||
) |
|||
pyz = PYZ(a.pure) |
|||
|
|||
exe = EXE( |
|||
pyz, |
|||
a.scripts, |
|||
[], |
|||
exclude_binaries=True, |
|||
name='main', |
|||
debug=False, |
|||
bootloader_ignore_signals=False, |
|||
strip=False, |
|||
upx=True, |
|||
console=True, |
|||
disable_windowed_traceback=False, |
|||
argv_emulation=False, |
|||
target_arch=None, |
|||
codesign_identity=None, |
|||
entitlements_file=None, |
|||
) |
|||
coll = COLLECT( |
|||
exe, |
|||
a.binaries, |
|||
a.datas, |
|||
strip=False, |
|||
upx=True, |
|||
upx_exclude=[], |
|||
name='main', |
|||
) |
Before Width: | Height: | Size: 4.3 MiB After Width: | Height: | Size: 4.0 MiB |
@ -0,0 +1,9 @@ |
|||
# 打包 |
|||
pyinstaller.exe -D .\main.py --collect-all paddleocr --collect-all pyclipper --collect-all imghdr --collect-all skimage --collect-all imgaug --collect-all scipy.io --collect-all lmdb |
|||
# 关于模型路径问题 |
|||
你自己的模型文件 统一放置于 ocr 文件夹内,ocr文件夹放置在 _internal目录下 的同级目录下 |
|||
paddle\libs全部文件复制到_internal\paddle\libs |
|||
ultralytics 复制到_internal下 |
|||
models 复制到_internal下 |
|||
# 地址 |
|||
https://github.com/PaddlePaddle/PaddleOCR/discussions/11342 |
Binary file not shown.
After Width: | Height: | Size: 4.7 MiB |
After Width: | Height: | Size: 3.0 MiB |
After Width: | Height: | Size: 3.1 MiB |
Binary file not shown.
Loading…
Reference in new issue