修改了模块的函数名,现在想用哪个模块直接导入即可

This commit is contained in:
2025-09-01 15:33:05 +08:00
parent 1c914cf89f
commit f342d37d63
3 changed files with 13 additions and 15 deletions

View File

@@ -207,7 +207,7 @@ class LicensePlatePreprocessor:
print(f"图像预处理失败: {e}")
return None
def initialize_crnn_model():
def LPRNinitialize_model():
"""
初始化CRNN模型
@@ -274,7 +274,7 @@ def initialize_crnn_model():
traceback.print_exc()
return False
def crnn_predict(image_array):
def LPRNmodel_predict(image_array):
"""
CRNN车牌号识别接口函数