Fix Image Processing module wrapper

This commit is contained in:
yoshiko2
2022-02-26 05:06:47 +08:00
parent 602d89cfe3
commit 02580c70a9
3 changed files with 9 additions and 7 deletions

View File

@@ -39,10 +39,10 @@ jobs:
run: | run: |
pyinstaller \ pyinstaller \
--onefile Movie_Data_Capture.py \ --onefile Movie_Data_Capture.py \
--hidden-import ADC_function.py \ --hidden-import "ImageProcessing.hog" \
--hidden-import core.py \
--add-data "$(python -c 'import cloudscraper as _; print(_.__path__[0])' | tail -n 1):cloudscraper" \ --add-data "$(python -c 'import cloudscraper as _; print(_.__path__[0])' | tail -n 1):cloudscraper" \
--add-data "$(python -c 'import opencc as _; print(_.__path__[0])' | tail -n 1):opencc" \ --add-data "$(python -c 'import opencc as _; print(_.__path__[0])' | tail -n 1):opencc" \
--add-data "$(python -c 'import face_recognition_models as _; print(_.__path__[0])' | tail -n 1):face_recognition_models" \
--add-data "Img:Img" \ --add-data "Img:Img" \
--add-data "config.ini:." \ --add-data "config.ini:." \
@@ -51,10 +51,10 @@ jobs:
run: | run: |
pyinstaller ` pyinstaller `
--onefile Movie_Data_Capture.py ` --onefile Movie_Data_Capture.py `
--hidden-import ADC_function.py ` --hidden-import "ImageProcessing.hog" `
--hidden-import core.py `
--add-data "$(python -c 'import cloudscraper as _; print(_.__path__[0])' | tail -n 1);cloudscraper" ` --add-data "$(python -c 'import cloudscraper as _; print(_.__path__[0])' | tail -n 1);cloudscraper" `
--add-data "$(python -c 'import opencc as _; print(_.__path__[0])' | tail -n 1);opencc" ` --add-data "$(python -c 'import opencc as _; print(_.__path__[0])' | tail -n 1);opencc" `
--add-data "$(python -c 'import face_recognition_models as _; print(_.__path__[0])' | tail -n 1):face_recognition_models" `
--add-data "Img;Img" ` --add-data "Img;Img" `
--add-data "config.ini;." ` --add-data "config.ini;." `

View File

@@ -86,7 +86,8 @@ def face_center(filename, model):
return mod.face_center(filename, model) return mod.face_center(filename, model)
except Exception as e: except Exception as e:
print('[-]Model found face ' + filename) print('[-]Model found face ' + filename)
logging.error(e) if config.getInstance().debug() == 1:
logging.error(e)
return (0, 0) return (0, 0)
if __name__ == '__main__': if __name__ == '__main__':

View File

@@ -3,13 +3,14 @@
$CLOUDSCRAPER_PATH=$(python -c 'import cloudscraper as _; print(_.__path__[0])' | select -Last 1) $CLOUDSCRAPER_PATH=$(python -c 'import cloudscraper as _; print(_.__path__[0])' | select -Last 1)
$OPENCC_PATH=$(python -c 'import opencc as _; print(_.__path__[0])' | select -Last 1) $OPENCC_PATH=$(python -c 'import opencc as _; print(_.__path__[0])' | select -Last 1)
$FACE_RECOGNITION_MODELS=$(python -c 'import face_recognition_models as _; print(_.__path__[0])' | select -Last 1)
mkdir build mkdir build
mkdir __pycache__ mkdir __pycache__
pyinstaller --onefile Movie_Data_Capture.py ` pyinstaller --onefile Movie_Data_Capture.py `
--hidden-import ADC_function.py ` --hidden-import "ImageProcessing.hog" `
--hidden-import core.py ` --add-data "$FACE_RECOGNITION_MODELS;face_recognition_models" `
--add-data "$CLOUDSCRAPER_PATH;cloudscraper" ` --add-data "$CLOUDSCRAPER_PATH;cloudscraper" `
--add-data "$OPENCC_PATH;opencc" ` --add-data "$OPENCC_PATH;opencc" `
--add-data "Img;Img" ` --add-data "Img;Img" `