21 lines
488 B
Markdown
21 lines
488 B
Markdown
# Seam Carving
|
|
|
|
## References:
|
|
- [Seam carving for content-aware image resizing](https://perso.crans.org/frenoy/matlab2012/seamcarving.pdf)
|
|
- [By-example Synthesis of Architectural Textures](https://inria.hal.science/inria-00547754v1/file/paper.pdf)
|
|
|
|
## Build
|
|
|
|
```bash
|
|
mkdir -p build # Create build dir if needed
|
|
cd build
|
|
cmake .. # Update build/Makefile
|
|
make # Compile
|
|
cd ..
|
|
```
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
build/seam-carving --source imgs/birds.jpg --output out.jpg -n 300
|
|
``` |