qt调用python代码
一、环境搭建
说明:环境的搭建在网上搜,一搜一大把
二、qt获取python返回值
①返回值转string输出:
PyObject *repr = PyObject_Repr(rest);
PyObject *imgfrompy = PyUnicode_AsEncodedString(repr, “utf-8”, “strict”);
char *result = PyBytes_AsString(imgfrompy);
// 打印返回值
qDebug()<<result<<“end”<<endl
②返回值转float一维数组输出:
③返回值转float二维数组输出: