An open API service indexing awesome lists of open source software.

https://github.com/icyjoseph/seam-carving

Image seam carving using Rust!
https://github.com/icyjoseph/seam-carving

image-processing rust seam-carving

Last synced: over 1 year ago
JSON representation

Image seam carving using Rust!

Awesome Lists containing this project

README

          

# Seam Carving

Carve out low energy seams on an image.

The actual seam energy calculation is done without dependencies.

Initially this project has a dependency on [`image`](https://github.com/image-rs/image) crate, to open and save images.

### Original Image

Dimensions: 1920x1080

Original Image

Credit: [SentryTV](https://www.reddit.com/user/SentryTV/)

### Seam carved

Dimensions: 1280x1080

- 66.66% of original width.

Original Image

# Time

The above carving runs in:

```

0:36.29 real
21.92 (secs) user
14.33 (secs) sys
99% CPU

```

It includes, opening and saving the image.