vector<double> getVector(const Mat &_t1f)
{
Mat t1f;
_t1f.convertTo(t1f, CV_64F);
return (vector<double>)(t1f.reshape(1, 1));
}
vector<double> getVector(const Mat &_t1f)
{
Mat t1f;
_t1f.convertTo(t1f, CV_64F);
return (vector<double>)(t1f.reshape(1, 1));
}