MCPcopy Create free account
hub / github.com/18Gray/ProCamera / put

Method put

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

Source from the content-addressed store, hash-verified

969
970 // javadoc:Mat::put(row,col,data)
971 public int put(int row, int col, double... data) {
972 int t = type();
973 if (data == null || data.length % CvType.channels(t) != 0)
974 throw new java.lang.UnsupportedOperationException(
975 "Provided data element number (" +
976 (data == null ? 0 : data.length) +
977 ") should be multiple of the Mat channels count (" +
978 CvType.channels(t) + ")");
979 return nPutD(nativeObj, row, col, data.length, data);
980 }
981
982 // javadoc:Mat::put(row,col,data)
983 public int put(int row, int col, float[] 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 9

typeMethod · 0.95
channelsMethod · 0.95
nPutDMethod · 0.95
depthMethod · 0.95
nPutFMethod · 0.95
nPutIMethod · 0.95
nPutSMethod · 0.95
nPutBMethod · 0.95
nPutBwOffsetMethod · 0.95

Tested by

no test coverage detected