I am using opencv 2.4.3 to perform vector to matrix conversion using the following code:
struct Component
{
cv::Rect box;
double area;
double circularity;
}
int main ( ... )
{
cv::vector < Component > components;
cv::Mat componentMat ( components, true );
std::cout << componentMat;
return 0;
}
But it gives out an error, saying:
OpenCV Error: Unsupported format or combination of formats() in unknown function, file ...\opencv\modules\core\src\out.cpp, line 111
What am I doing wrong here? Is there any other method to convert this vector into matrix form? Thank you.