https://github.com/girishg4t/image-processor
Manipulate digital images in various ways, such as enhancing, filtering, or analyzing them
https://github.com/girishg4t/image-processor
Last synced: about 1 month ago
JSON representation
Manipulate digital images in various ways, such as enhancing, filtering, or analyzing them
- Host: GitHub
- URL: https://github.com/girishg4t/image-processor
- Owner: girishg4t
- Created: 2024-04-15T06:29:53.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-16T11:11:24.000Z (about 1 year ago)
- Last Synced: 2024-04-20T12:33:50.038Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 1.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Image processor
`cargo run infile.png outfile.png blur 2.5 invert rotate 180 brighten 10`
...then your program would:
- read infile.png
- apply a blur of 2.5
- invert the colors
- rotate the image 180 degrees clockwise
- brighten the image by 10
- and write the result to outfile.png