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

Method toList

opencv/src/main/java/org/opencv/core/MatOfByte.java:91–97  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

89 }
90
91 public List<Byte> toList() {
92 byte[] a = toArray();
93 Byte ab[] = new Byte[a.length];
94 for(int i=0; i<a.length; i++)
95 ab[i] = a[i];
96 return Arrays.asList(ab);
97 }
98}

Callers

nothing calls this directly

Calls 1

toArrayMethod · 0.95

Tested by

no test coverage detected