Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 744 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 744 Bytes

Image Processing Demo

Lets you interactively apply convolutions on a pixel grid. Written in Rust using egui with eframe template.

Building

You can run the app natively using cargo run or compile it to WASM and use Trunk to view it as a web page. To build for web target:

  1. Install the required target with rustup target add wasm32-unknown-unknown.
  2. Install Trunk with cargo install --locked trunk.
  3. Run trunk serve to build and serve on http://127.0.0.1:8080. Trunk will rebuild automatically if you edit the project.
  4. Open `http://127.0.0.1:8080/index.html in a browser.