Results 656 comments of Eric Blade

I think that depending on Workers, as they were constructed in the existing Quagga, isn't really a good idea -- in my fork, I've actually eliminated use of workers, and...

Are you creating your ResultCollector with ````{ capture: true }```` ?

Did you do something differently to get the frame data? You should be able to just use the data url as the src attribute of an image, if you want...

could you post more of the surrounding code? it looks like you're calling this at init time, when it wouldn't have any results, rather than after onDetected callbacks?

ok, i think you want to put the creation and registering of the ResultCollector in your callback from Quagga.init(), and then do your .getResults() in your onDetected callback. What it...

The callback to Quagga.init() is a function called for success or error, error parameter is null if it's successful. It looks like ```javascript Quagga.init({ inputStream : { name : "Live",...

getResults shouldn't be in the init callback, registerResultCollector should be in the init callback, and resultCollector.getResults should return an Array that looks like it should have stuff in it if...

```` const res = resultCollector.getResults(); res.forEach((r) => console.log(r.frame)); ````

Did you intend to open this issue in this project? db and schema don't make sense in any context I understand here.

edited original post to have proper formatting for code