Metadata-Version: 2.1
Name: IMSIS
Version: 1.1.7
Summary: IMSIS
Home-page: https://github.com/rengezri
Download-URL: https://github.com/rengezri/imsis/archive/refs/tags/v1.1.7.tar.gz
Author: rengezri
Author-email: rengezri <author@example.com>
License: MIT
Project-URL: Homepage, https://github.com/rengezri/imsis
Project-URL: Bug Tracker, https://github.com/rengezri/imsis/issues
Keywords: image analysis,dialogs,batch processing
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.txt

IMSIS
==================================================

Introduction
------------

IMSIS is an open source image analysis package in python.
The library contains functions to quickly create simple dialog based scripts, fast image processing sequences and perform basic image analysis.
The package relies on powerful libraries such as Numpy, Scipy, OpenCV and QT.

Typical applications would be:

- Dialog based scripts where syntax editing is replaced by runtime dialogs (input dialogs, warnings, property lists, radio button lists, text dialogs etc.)
- Dialog based feature selection (spots, lines, rectangles etc.)
- Fast multi image viewing with or without histograms
- Image batch processing (sharpening, denoising, morphological operations, color operations, image conversion etc.)
- Image analysis (finding unique features, line profiles, counting features, image alignment, image comparisons, image sharpness)
- Image filtering in Fourier space
- Fast image processing for machine learning data

Requirements
------------

IMSIS requires the following packages

- numpy 1.13.3
- scipy 1.1.0
- matplotlib 2.0.0
- opencv_python 4.0.0.21
- Pillow 6.2.0
- PyQt5 5.15

Requirements documentation
--------------------------

IMSIS Documentation building requires the following additional packages

- sphinx
- sphinx_rtd_theme
- rinohtype

Documentation can be automatically generated with python build_docs.py

Installation
------------

python setup.py sdist bdist_wheel

pip install dist\imsis-1.0-py3-none-any.whl

Example
-------

A simple example of loading and displaying an image

```
import imsis as ims

fn = r".\images\bberry.jpg"
im_blueberry = ims.Image.load(fn)

ims.View.plot(im_blueberry,title="Blueberry",window_title="Plot")
```

A list of examples of every method implemented can be found in the examples folder.

Some more can be found below:


Animated transitions
--------------------
<img src="./figures/animated_transitions.jpg" width="300">

Image blending
--------------
<img src="./figures/blending.jpg" width="300">

Image denoising
---------------
<img src="./figures/denoise.jpg" width="300">

Interactive user dialogs
------------------------
<img src="./figures/dialogs.jpg" width="300">

Measurements on images
----------------------
<img src="./figures/measurements_on_image.jpg" width="300">

Feature descriptor Matching
---------------------------
<img src="./figures/feature_descriptor_matching.jpg" width="300">

Find Brightest Spot
-------------------
<img src="./figures/find_brightest_spot.jpg" width="300">

Find Edges
----------
<img src="./figures/find_edges.jpg" width="300">

Find Feature
------------
<img src="./figures/find_feature.jpg" width="300">

Frequency domain image filtering
--------------------------------
<img src="./figures/frequency_domain_filtering.jpg" width="300">

Histogram operations
--------------------
<img src="./figures/histogram_operations.jpg" width="300">

HSV color channel editing
-------------------------
<img src="./figures/hsv_Channels.jpg" width="300">

K-means clustering
------------------
<img src="./figures/k_meansclustering.jpg" width="300">

Image masking
-------------
<img src="./figures/masking.jpg" width="300">
