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

Method put

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

Source from the content-addressed store, hash-verified

778
779 // javadoc:Mat::put(row,col,data)
780 public int put(int row, int col, double... data) {
781 int t = type();
782 if (data == null || data.length % CvType.channels(t) != 0)
783 throw new UnsupportedOperationException(
784 "Provided data element number (" +
785 (data == null ? 0 : data.length) +
786 ") should be multiple of the Mat channels count (" +
787 CvType.channels(t) + ")");
788 return nPutD(nativeObj, row, col, data.length, data);
789 }
790
791 // javadoc:Mat::put(idx,data)
792 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