Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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?