https://github.com/bobertlo/seamcarvego
Seam Carving implementation.
https://github.com/bobertlo/seamcarvego
algorithm content-aware-resize golang image seam-carving
Last synced: 5 months ago
JSON representation
Seam Carving implementation.
- Host: GitHub
- URL: https://github.com/bobertlo/seamcarvego
- Owner: bobertlo
- License: isc
- Created: 2018-12-22T19:34:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-29T06:45:15.000Z (over 7 years ago)
- Last Synced: 2025-08-13T20:24:51.013Z (10 months ago)
- Topics: algorithm, content-aware-resize, golang, image, seam-carving
- Language: Go
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# seamcarvego
[](https://travis-ci.org/bobertlo/seamcarvego)
[](https://goreportcard.com/report/github.com/bobertlo/seamcarvego)
*seamcarvego* is an implementation of a [seam
carving](https://en.m.wikipedia.org/wiki/Seam_carving) algorithm. For now, I
have simply ported an assignment from an algorithms class to go, in a test
driven manner. I plan to attempt optimizations in the future.
# Frontend
There is included a front-end with the following syntax:
```
seamcarvego [input.png] [output.png] [cols] [rows]
```
The frontend may be installed with `go get` using the following command:
```
go get github.com/bobertlo/seamcarvego/cmd/seamcarvego
```