PiperOrigin-RevId: 529890599
This commit is contained in:
Sebastian Schmidt
2023-05-05 21:51:51 -07:00
committed by Copybara-Service
parent e707c84a3d
commit 6aad5742c3
17 changed files with 117 additions and 68 deletions
@@ -10,7 +10,7 @@ type LibConstructor = new (...args: any[]) => GraphRunner;
/** An image returned from a MediaPipe graph. */
export interface WasmImage {
data: Uint8ClampedArray|Float32Array|WebGLTexture;
data: Uint8Array|Float32Array|WebGLTexture;
width: number;
height: number;
}