Metadata-Version: 2.1
Name: imcomp
Version: 1.0.2
Summary: Image visualization and comparison for multiple series of images
Author-email: Karl Krissian <karl.krissian@gmail.com>
Project-URL: Homepage, https://github.com/karlkrissian/imcomp
Project-URL: Bug Tracker, https://github.com/karlkrissian/imcomp/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Foundation==0.1.0a0.dev1
Requires-Dist: numpy>1.23.0
Requires-Dist: opencv_python>4.2
Requires-Dist: psutil==5.8.0
Requires-Dist: qimview>=1.0.1
Requires-Dist: xlwt==1.3.0

# imcomp.py

GUI that allows to compare series of images
It can be configured to display specific results of an program/algorithm

## Installation on Windows with >= Python 3.9:

Python: 3.9
https://www.python.org/downloads/release/python-390/
https://www.python.org/ftp/python/3.9.0/python-3.9.0-amd64.exe

Set python3.9 in console (adapt to your user path)
set PATH=C:\Users\USERNAME\AppData\Local\Programs\Python\Python39\;C:\Users\kkrissian\AppData\Local\Programs\Python\Python39\Scripts;%PATH%

## Installation issue:

PyYAML version 5.4 required by CppBind can create installation errors, I was able to get around this issue by running:

pip3 install wheel -v
pip3 install "cython<3.0.0" pyyaml==5.4 --no-build-isolation -v
