首页 > 解决方案 > Jpython ImportError:没有名为 cv2 的模块

问题描述

代码 :

PythonInterpreter interpreter = new PythonInterpreter();
interpreter.execfile("C:\\workspace\\trawe\\python\\license_rec\\PlateRecog.py");
PyFunction func = (PyFunction)interpreter.get("StartPlateRecog",PyFunction.class);
PyObject pyobj = func.__call__(new PyString(imgBase64));

标签: pythonimporterror

解决方案


推荐阅读