0
我想在opencv 2.4.11中將const float *數組轉換爲Mat數組。 我試過這個:將const float float轉換成Mat
const float *svv = svm->get_support_vector(0);//this method returns const float*
cv::Mat sv= cv::Mat(1, sizeof(*svv), CV_32F, const_cast<float *>(svv));
這是沒用的。有任何這方面的幫助嗎?