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

Method toList

opencv/src/main/java/org/opencv/core/MatOfInt4.java:73–79  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

71 }
72
73 public List<Integer> toList() {
74 int[] a = toArray();
75 Integer ab[] = new Integer[a.length];
76 for(int i=0; i<a.length; i++)
77 ab[i] = a[i];
78 return Arrays.asList(ab);
79 }
80}

Callers

nothing calls this directly

Calls 1

toArrayMethod · 0.95

Tested by

no test coverage detected