(
webcamVideoElement?: HTMLVideoElement,
webcamConfig?: WebcamConfig)
| 236 | * } |
| 237 | */ |
| 238 | export async function webcam( |
| 239 | webcamVideoElement?: HTMLVideoElement, |
| 240 | webcamConfig?: WebcamConfig): Promise<WebcamIterator> { |
| 241 | return WebcamIterator.create(webcamVideoElement, webcamConfig); |
| 242 | } |
| 243 | |
| 244 | /** |
| 245 | * Create an iterator that generates frequency-domain spectrogram `Tensor`s from |
nothing calls this directly
no test coverage detected
searching dependent graphs…