Output Mat object in XCode7.2 debugger console
Hi,
How can I inspect values of the Mat object in XCode 7.2 debugger console (lldb)? I've tried commands like p myMat
and po myMat
with no luck.
UPDATE
simple cout << myMat
works in the code, but even then every single value from matrix is on its own line, so it is hard to comprehend what matrix consists of. Can I improve this somehow?
Thank you.