Olivier Louvignes
Olivier Louvignes
I've also just released a frame processor rebuilt for vision-camera 3+ that can do high (configurable) fps scanning and provides highlighting of detected barcodes out-of-the-box. You can check a working...
@natemartins I had android issues as well in the past but they went away, can you try the latest version [v0.5.1](https://github.com/mgcrea/vision-camera-barcode-scanner/releases/tag/0.5.1) and see if you still encounter issues building vision-camera?
Unfortunately it's more complex than the current given solutions as it actually depends on the camera view size (that can be equal to the window when in fullscreen), and there...
You can call `server.close()`: ```ts const server = serve(options, ({ address, port }) => { console.log(`Server listening at http://${address}:${port}`); }); process.on("SIGINT", () => { console.log("Ctrl-C was pressed"); server.close(); }); ```
Would be best to support an arbitrary number of dimensions using generics, a bit like what [@tensorflow/tfjs-core](https://github.com/tensorflow/tfjs/blob/f0f981fe306bf548e300536aca485c0ffdd6619e/tfjs-core/src/tensor.ts#L544) does with a generic tensor + aliases. ``` /** @doclink Tensor */ export...
Just stumbled on this, anything we can do to help move this PR forward?
You can try the latest release as it might fix this.