MCPcopy Create free account
hub / github.com/danielenapo/Rubik-s-cube-solver / put

Method put

java/src/main/java/org/opencv/core/Mat.java:764–773  ·  view source on GitHub ↗
(int row, int col, double... data)

Source from the content-addressed store, hash-verified

762
763 // javadoc:Mat::put(row,col,data)
764 public int put(int row, int col, double... data) {
765 int t = type();
766 if (data == null || data.length % CvType.channels(t) != 0)
767 throw new UnsupportedOperationException(
768 "Provided data element number (" +
769 (data == null ? 0 : data.length) +
770 ") should be multiple of the Mat channels count (" +
771 CvType.channels(t) + ")");
772 return nPutD(nativeObj, row, col, data.length, data);
773 }
774
775 // javadoc:Mat::put(idx,data)
776 public int put(int[] idx, double... data) {

Callers 15

vector_Point_to_MatMethod · 0.95
vector_Point3_to_MatMethod · 0.95
vector_Mat_to_MatMethod · 0.95
vector_float_to_MatMethod · 0.95
vector_uchar_to_MatMethod · 0.95
vector_char_to_MatMethod · 0.95
vector_int_to_MatMethod · 0.95
vector_Rect_to_MatMethod · 0.95
vector_Rect2d_to_MatMethod · 0.95
vector_double_to_MatMethod · 0.95
vector_DMatch_to_MatMethod · 0.95

Calls 15

typeMethod · 0.95
channelsMethod · 0.95
nPutDMethod · 0.95
dimsMethod · 0.95
nPutDIdxMethod · 0.95
depthMethod · 0.95
nPutFMethod · 0.95
nPutFIdxMethod · 0.95
nPutIMethod · 0.95
nPutIIdxMethod · 0.95
nPutSMethod · 0.95
nPutSIdxMethod · 0.95

Tested by

no test coverage detected