mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 22:44:02 +08:00
Merge pull request #8228 from csukuangfj:csukuangfj-patch
This commit is contained in:
commit
5bfaf9931b
@ -183,6 +183,12 @@ std::ostream& operator << (std::ostream& out, const Mat& mtx)
|
||||
return out << Formatter::get()->format(mtx);
|
||||
}
|
||||
|
||||
static inline
|
||||
std::ostream& operator << (std::ostream& out, const UMat& m)
|
||||
{
|
||||
return out << m.getMat(ACCESS_READ);
|
||||
}
|
||||
|
||||
template<typename _Tp> static inline
|
||||
std::ostream& operator << (std::ostream& out, const Complex<_Tp>& c)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user