Ошибка импорта Jpython: нет модуля с именем cv2 - PullRequest
1 голос
/ 10 июля 2019

Код:

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));
...