Image quality is an open source software library for Automatic Image Quality Assessment (IQA).
- Python 3.7
- LibSVM
- (Optional) Docker
The package is public and is hosted in PyPi repository. To install it in your machine run
pip install imquality
After installing imquality
package, you can test that it was
successfully installed running the following commands in a python
terminal.
>>> import imquality.brisque as brisque >>> import PIL.Image >>> path = 'path/to/image' >>> img = PIL.Image.open(path) >>> brisque.score(img) 4.9541572815704455
- Ricardo Ocampo - [email protected]