嗨,我正在这段代码中使用find_nearest

resize(ROI, tmp1, Size(10, 15), 0, 0, INTER_LINEAR);
tmp1.convertTo(tmp2, CV_32FC1);
float p = knn.find_nearest(tmp2.reshape(1, 1), 1);

但我收到Input Samples must be floating-point matrix
为什么??

最佳答案

我有sam错误,但我尝试通过将矩阵(temp2)转换为1D来解决

07-24 09:52