E_l*_*ner 10 c++ opencv vector matrix type-conversion
我使用opencv 2.4.3使用以下代码执行向量到矩阵转换:
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;
}
Run Code Online (Sandbox Code Playgroud)
但它发出错误,说:
OpenCV Error: Unsupported format or combination of formats() in unknown function, file ...\opencv\modules\core\src\out.cpp, line 111
Run Code Online (Sandbox Code Playgroud)
我在这做错了什么?有没有其他方法将此向量转换为矩阵形式?谢谢.
| 归档时间: |
|
| 查看次数: |
21393 次 |
| 最近记录: |