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
- Host: GitHub
- URL: https://github.com/r4victor/image_cnc
- Owner: r4victor
- License: mit
- Created: 2020-11-01T06:06:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-01T14:05:43.000Z (over 5 years ago)
- Last Synced: 2025-02-14T22:34:01.201Z (over 1 year ago)
- Topics: gui, image-comparison, image-compression, image-processing, image-viewer
- Language: Python
- Homepage:
- Size: 8.47 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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:

## 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
```