我在 iPhone 项目中使用 OpenCV。在这个应用程序中,我从 Opencv 函数接收到一个 3x3 矩阵,需要将其转换为 NSString。例如:
cv::Mat myMatrix = opencvClass.getMatrix();
NSString *matrixString = myMatrix.toNSString(); // this function does not exist actually but it is what I need
有什么建议么?
干杯,