您的位置:首页 > Web前端

How to convert an OpenCV cv::Mat into a float* that can be fed into Vlfeat vl_dsift_process ?

2013-07-03 02:38 489 查看
Question:How to convert an OpenCV cv::Mat into a float* that can be fed into Vlfeat vl_dsift_process? I cannot understand how vl_dsift_process works on a
one-dimensional float array. The official samples only demonstrate how to use MatLab API. It seems that there are no samples about C API, and the only clue is the MEX file in the source package.Answer:float* matData = (float*)myMat.data;Make sure the matrix is not deleted/goes out of scope before finishing using the pointer to data. And make sure the matrix contain floats.I cannot understand how vl_dsift_process works on a one-dimensional float arrayDSIFT expects a grayscale image where intensivity of pixel (x, y) is stored in float_array[y * width + x] as float value. In OpenCV images are stored as unsigned chars so simple conversion of Mat::data to float* will not work. You have to manually convert every
value to float:
Mat mat = imread("image_name.jpg", 0); // 0 stands for grayscale

vector<float> img;
for (int i = 0; i < mat.rows; ++i)
for (int j = 0; j < mat.cols; ++j)
img.push_back(mat.at<unsigned char>(i, j));

vl_dsift_process(dsift, &img[0]);


                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: