mirror of
https://github.com/opencv/opencv.git
synced 2025-06-11 20:09:23 +08:00
Merge pull request #15181 from berak:java_print_blob
This commit is contained in:
commit
eec9fa9d5e
@ -735,8 +735,11 @@ public class Mat {
|
||||
// javadoc:Mat::toString()
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Mat [ " +
|
||||
rows() + "*" + cols() + "*" + CvType.typeToString(type()) +
|
||||
String _dims = (dims() > 0) ? "" : "-1*-1*";
|
||||
for (int i=0; i<dims(); i++) {
|
||||
_dims += size(i) + "*";
|
||||
}
|
||||
return "Mat [ " + _dims + CvType.typeToString(type()) +
|
||||
", isCont=" + isContinuous() + ", isSubmat=" + isSubmatrix() +
|
||||
", nativeObj=0x" + Long.toHexString(nativeObj) +
|
||||
", dataAddr=0x" + Long.toHexString(dataAddr()) +
|
||||
|
Loading…
Reference in New Issue
Block a user