Add multithreading #186
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The next level of performance improvement is most definitely multithreading the detection system (especially for the live camera view) using web workers.
This requires a fairly large rebuild. The image as background for the canvas is a problem because getting the image data to the worker in a way that tensorflow can handle is not easy. So, probably adding to the image to the canvas context and then allowing the canvas object to be passed to the worker is probably the best bet.
Nevermind, figured out how to pass image data more efficiently, so the old background image technique still works. Don't need to move the image to the canvas.
Until I want panning and zooming, anyway...