冲突排查
This commit is contained in:
9
main.py
9
main.py
@@ -27,7 +27,12 @@
|
|||||||
# send_an_error_email(program_name='照片审核关键信息抽取脚本', error_name=repr(e), error_detail=traceback.format_exc())
|
# send_an_error_email(program_name='照片审核关键信息抽取脚本', error_name=repr(e), error_detail=traceback.format_exc())
|
||||||
# # 释放显存
|
# # 释放显存
|
||||||
# paddle.device.cuda.empty_cache()
|
# paddle.device.cuda.empty_cache()
|
||||||
from photo_review.photo_review import main
|
import logging.config
|
||||||
|
|
||||||
|
from config.log import LOGGING_CONFIG
|
||||||
|
from photo_review import photo_review
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
logging.config.dictConfig(LOGGING_CONFIG)
|
||||||
|
log = logging.getLogger()
|
||||||
|
photo_review.main()
|
||||||
|
|||||||
@@ -53,9 +53,9 @@ def open_image(img_path):
|
|||||||
# 分割大图片
|
# 分割大图片
|
||||||
def split_image(img_path, max_ratio=2.82, best_ration=1.41, overlap=0.05):
|
def split_image(img_path, max_ratio=2.82, best_ration=1.41, overlap=0.05):
|
||||||
split_result = []
|
split_result = []
|
||||||
pdb.set_trace()
|
|
||||||
# 打开图片
|
# 打开图片
|
||||||
img = open_image(img_path)
|
img = open_image(img_path)
|
||||||
|
pdb.set_trace()
|
||||||
# 获取图片的宽度和高度
|
# 获取图片的宽度和高度
|
||||||
height, width = img.shape[:2]
|
height, width = img.shape[:2]
|
||||||
# 计算宽高比
|
# 计算宽高比
|
||||||
|
|||||||
Reference in New Issue
Block a user