1 repo
Tools and patterns for efficient data transfer and memory usage between execution contexts.
Distinguishing note: Focuses on low-overhead data sharing between threads rather than general memory allocation.
Explore 1 awesome GitHub repository matching software engineering & architecture · Memory Management Utilities. Refine with filters or upvote what's useful.
Tesseract.js is a JavaScript library that provides optical character recognition capabilities directly within web browsers and Node.js environments. It functions as a client-side engine, enabling the conversion of images containing printed text into machine-readable strings without the need for external APIs or server-side infrastructure. The library distinguishes itself by running the original C++ optical character recognition engine within the browser through WebAssembly modules. To maintain interface responsiveness during intensive computation, it utilizes background threads for parallel p
Exchanges image pixel data between the main thread and background workers using typed arrays to minimize memory copying overhead.