Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tamton-aquib/imreco
A python cli program to perform basic operations to images using opencv.
https://github.com/tamton-aquib/imreco
hacktoberfest image opencv python
Last synced: about 2 hours ago
JSON representation
A python cli program to perform basic operations to images using opencv.
- Host: GitHub
- URL: https://github.com/tamton-aquib/imreco
- Owner: tamton-aquib
- License: mit
- Created: 2022-02-28T17:32:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-25T17:36:54.000Z (9 months ago)
- Last Synced: 2024-05-02T03:45:45.175Z (7 months ago)
- Topics: hacktoberfest, image, opencv, python
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Imreco
Image-Resizer-Converter.
A python cli program to perform basic operations on images using opencv. (WIP)This project was made possible by: @[shana](https://github.com/Shanayasmin).
This project was done regarding [tinkerhub co-coder](https://tinkerhub.org/).### Installation:
```python
pip install imreco
```### Usage:
```sh
# Syntax:
imreco resize -i -o --quality 80
imreco compress -i -o --size 300x400
imreco convert -i -o
```### TODOS:
- [x] Resizer: To change dimension of the provided image, and save it to a new file.
- [x] Converter: To change file formats from png to jpg, etc.
- [x] Compressor: To compress jpg files in file size.
- [x] Config: Add user config options. (maybe argparse or typer)
- [ ] Checks multiple files or a directory.
- [ ] Chain functions and/or operations
- [ ] Host as a flask api server?