Wim Van Aerschot
Results
3
comments of
Wim Van Aerschot
Another option would be a method to capture an image from the camera stream?
Found something; You can access `e.object.lastVisionImage`; Then create an ImageSource from it like this: ``` const bmp = e.object.lastVisionImage.getBitmap(); const source = new ImageSource(); source.setNativeSource(bmp); ```
Attempt 1 should work as well, no? (Both 1 & 2 are not working for me as well)