I use opencv c++ API for computer vision application and I manage matrices with cv::Mat structure. Opencv use ref counting to release created object as cv::Mat. I use also libshogun for more specific machine learning algorithms. Shogun has its own matrices structure called SGMatrix. I initialize SGMatrix from a cv::Mat like this:
cv::Mat cvmat(100,100,CV_32FC1,cv::Scalar(0.0));
SGMatrix<float> sgmatrix((float*)cvmat.data, cvmat.rows, cvmat.cols);
My problem is when I use another object in shogun lib like:
CSimpleFeatures<float>* features = new CSimpleFeatures<float>(sgmatrix);
where shogun is supposed now to own the matrix created with features, I get an error, at runtime, when opencv try to release cvmat which has already been released by shogun.
How can I handle this ? I don't want to clone my matrix.