MCPcopy Create free account
hub / github.com/Rohithkvsp/Form-N-Fun / put

Method put

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

Source from the content-addressed store, hash-verified

930
931 // javadoc:Mat::put(row,col,data)
932 public int put(int row, int col, double... data) {
933 int t = type();
934 if (data == null || data.length % CvType.channels(t) != 0)
935 throw new java.lang.UnsupportedOperationException(
936 "Provided data element number (" +
937 (data == null ? 0 : data.length) +
938 ") should be multiple of the Mat channels count (" +
939 CvType.channels(t) + ")");
940 return nPutD(nativeObj, row, col, data.length, data);
941 }
942
943 // javadoc:Mat::put(row,col,data)
944 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_double_to_MatMethod · 0.95
vector_DMatch_to_MatMethod · 0.95
loadResourceMethod · 0.95

Calls 8

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

Tested by

no test coverage detected