我在C++工程中引用了paddleocr,但是识别出来的是乱码,但是在python下识别是没有问题的 #13639
Unanswered
kinghelong
asked this question in
Q&A
Replies: 2 comments
-
解决办法:https://blog.csdn.net/liubing8609/article/details/121262899 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
请提出你的问题 Please ask your question
`#include <Python.h>
void call_paddleocr() {
PyObject* pName, * pModule, * pDict, * pClass, * pInstance, * pFunc;
PyObject* pArgs, * pValue;
}
int main() {
call_paddleocr();
return 0;
}
`
Beta Was this translation helpful? Give feedback.
All reactions