Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 614 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 614 Bytes

Rust WASM Seam Carving

Intro

This repo a demo of the Seam Carving algorithm implemented in Rust running on Web Assembly. For a detailed write up, read here.

Running Locally

If you want to run the repo locally, you'll need the following:

node
yarn 
cargo

First, install the application dependencies with:

yarn install

Next, install the required cargo watch binary.

cargo install cargo-watch

Finally, run the development server with:

yarn dev

The application will be available on http://localhost:3000.