1
0
seam-carving/README.md

28 lines
543 B
Markdown
Raw Permalink Normal View History

2024-07-11 20:57:56 +00:00
# Seam carving
https://en.wikipedia.org/wiki/Seam_carving
2024-07-14 01:21:08 +00:00
## Feature wishlist
* Drag & drop custom images
* Make it run well in debug mode
* Incremental/partial updating of energy field
* Multi-threaded carving
* Seam insertion/generation
* Marking areas to preserve or remove
* Realtime (a.k.a. 60fps) seam carving
* Fix web build
2024-07-11 20:57:56 +00:00
## Building & run
Windows & linux
```shell
zig build run
```
2024-07-14 01:21:08 +00:00
Web (currently broken)
2024-07-11 20:57:56 +00:00
```shell
emsdk install latest
zig build -Dtarget=wasm32-emscripten --sysroot [path to emsdk]/upstream/emscripten run
```