Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HistoCleanQUB/HistoClean
HistoClean is a tool for the preprocessing and augmentation of images used in deep learning models. This easy to use application brings together the most popular image processing packages from across the python universe, meaning no more looking at documentation! HistoClean provides real time feedback to augmentations and preprocessing options. This allows users to evaluate their steps before implementation.
https://github.com/HistoCleanQUB/HistoClean
convolutional-neural-networks deep-learning gui gui-application image-analysis image-augmentation image-augmentation-preprocessing image-processing images
Last synced: 29 days ago
JSON representation
HistoClean is a tool for the preprocessing and augmentation of images used in deep learning models. This easy to use application brings together the most popular image processing packages from across the python universe, meaning no more looking at documentation! HistoClean provides real time feedback to augmentations and preprocessing options. This allows users to evaluate their steps before implementation.
- Host: GitHub
- URL: https://github.com/HistoCleanQUB/HistoClean
- Owner: HistoCleanQUB
- License: agpl-3.0
- Created: 2021-05-05T15:38:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-18T12:42:01.000Z (almost 3 years ago)
- Last Synced: 2024-09-07T15:52:33.713Z (3 months ago)
- Topics: convolutional-neural-networks, deep-learning, gui, gui-application, image-analysis, image-augmentation, image-augmentation-preprocessing, image-processing, images
- Language: Python
- Homepage:
- Size: 2.83 MB
- Stars: 27
- Watchers: 2
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-biological-image-analysis - HistoClean - Tool for the preprocessing and augmentation of images used in deep learning models. (Pathology)
README
## HistoClean
Welcome to the HistoClean Gitbub repository!HistoClean is an open source image processing tool for use in developing deep learning models. Here, we bring together the best image manipulation packages into one easy to use application.
This repository contains all relavent files relating to the paper ["HistoClean: open-source software for histological image pre-processing and augmentation to improve development of robust convolutional neural networks"](https://www.biorxiv.org/content/10.1101/2021.06.07.447339v2)
WARNING: HistoClean is currenlty in pre-release and may contain many bugs. It is recomended you make a copy of any datasets before applying the application.
## The latest binary release can be found [Here](https://github.com/HistoCleanQUB/HistoClean/releases)
Currently this application is only availble for Windows, but there are plans to port to MacOS and Linux in the coming weeks.
The current version (v0.1.2) consists of five modules:
1) Image patching - Divide large images into patches for use in convolutional neural networks or other computer vision tasks. Based on the ["Openslide"](https://openslide.org/) Python Package
2) Dataset balancing - Balance an infinate number of image classes by applying random rotation and mirroring to existing images. Class balancing is essential to prevent bias when training deep learining models.
3) Whitespace Filtering - Set a minimum histological tissue (foreground) threshold for images. Allows for the quick and easy removal on non-informative images. Based on the [openCV](https://docs.opencv.org/master/d7/d4d/tutorial_py_thresholding.html) library -
4) Image Normalisaton - Match the RGB histograms of images to a target image. This helps remove variations in staining. Based on the [Scikit-image](https://scikit-image.org/docs/dev/auto_examples/color_exposure/plot_histogram_matching.html) package.
5) Image preprocessing/ augmentation - Add a vast variety of image processsing techniques to your image set. These pre-processing techniques can help accentiate desired features, or add noise to help prevent overfitting during training of deep learning models. This module is based arround both the openCV and [Imgaug](https://github.com/aleju/imgaug) libraries.