Rust WASM port of jscanify - a mobile document scanner library.
This is a Rust implementation that compiles to WebAssembly, with the goal of providing the same document scanning capabilities as jscanify.
- Install Rust: https://rustup.rs/
- Install wasm-pack:
cargo install wasm-pack# For web
wasm-pack build --target web --release
# For Node.js
wasm-pack build --target nodejs --release
# For bundlers (webpack, etc.)
wasm-pack build --target bundler --releaseMIT License - same as the original jscanify project.
- Add multi-threading support with Web Workers
- Add gpu support
- Benchmarks