MCPcopy Create free account
hub / github.com/danopdev/Perspective / toString

Method toString

opencv/src/main/java/org/opencv/core/Mat.java:761–772  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

759
760 // javadoc:Mat::toString()
761 @Override
762 public String toString() {
763 String _dims = (dims() > 0) ? "" : "-1*-1*";
764 for (int i=0; i<dims(); i++) {
765 _dims += size(i) + "*";
766 }
767 return "Mat [ " + _dims + CvType.typeToString(type()) +
768 ", isCont=" + isContinuous() + ", isSubmat=" + isSubmatrix() +
769 ", nativeObj=0x" + Long.toHexString(nativeObj) +
770 ", dataAddr=0x" + Long.toHexString(dataAddr()) +
771 " ]";
772 }
773
774 // javadoc:Mat::dump()
775 public String dump() {

Callers 11

fromArrayMethod · 0.45
toArrayMethod · 0.45
toArrayMethod · 0.45
MatOfDMatchMethod · 0.45
toArrayMethod · 0.45
toArrayMethod · 0.45
toArrayMethod · 0.45
toArrayMethod · 0.45
toArrayMethod · 0.45
onCreateViewMethod · 0.45
onProgressChangedMethod · 0.45

Calls 7

dimsMethod · 0.95
sizeMethod · 0.95
typeToStringMethod · 0.95
typeMethod · 0.95
isContinuousMethod · 0.95
isSubmatrixMethod · 0.95
dataAddrMethod · 0.95

Tested by

no test coverage detected