提交 e310adde 编写于 作者: P Philipp Hasper

Fixing Matx ostream operator

cv::Matx could not be converted to c::Mat automatically
上级 4d474d40
......@@ -198,7 +198,7 @@ std::ostream& operator << (std::ostream& out, const std::vector<Point3_<_Tp> >&
template<typename _Tp, int m, int n> static inline
std::ostream& operator << (std::ostream& out, const Matx<_Tp, m, n>& matx)
{
return out << Formatter::get()->format(matx);
return out << Formatter::get()->format(Mat(matx));
}
template<typename _Tp> static inline
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册