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

https://github.com/r4victor/image_cnc

🖼️ 🖼️ A GUI tool to modify and compare images
https://github.com/r4victor/image_cnc

gui image-comparison image-compression image-processing image-viewer

Last synced: about 1 year ago
JSON representation

🖼️ 🖼️ A GUI tool to modify and compare images

Awesome Lists containing this project

README

          

# Image C&C tool

Image C&C (stands for Compress and Compare) is a GUI tool that allows to upload images, modify them and compare the effects of modifications visually and numerically.

Here's how it looks at the moment:

![Window image](window.png)

## Requirements

* Python >= 3.8
* `NumPy`
* `Pillow`
* `PySimpleGUI`
* `SciPy`
* `pytest` (optional, to run tests)

## Installation

1. Clone the repo:

```text
$ git clone https://github.com/r4victor/image_cnc && cd image_cnc
```

2. Install requirements:
```text
$ pip install -r requirements.txt
```

That's it. Now you can run a program:
```text
$ python -m image_cnc
```

## Running tests

1. Install `pytest`:
```text
$ pip install pytest
```

2. Run tests:
```text
$ python -m pytest tests
```