First time here? Check out the FAQ!
answered 2015-02-10 08:51:01 -0600
if you really need that, just write one:
bool operator ! (const Mat&m) { return m.empty(); } Mat m1; Mat m2(1,1,0); cerr << !m1 << endl; cerr << !m2 << endl; 1 0