Hyperspectral data analysis and machine learning
Project description
hypers
Provides an object model for hyperspectral data.
- Simple tools for exploratory analysis of hyperspectral data
- Interactive hyperspectral viewer built into the object
- Allows for unsupervised machine learning directly on the object (using scikit-learn)
- More features coming soon...
Contents
About
This package provides an object model for hyperspectral data (e.g. similar to pandas for tabulated data). Many of the
commonly used tools are built into the object, including a lightweight interactive gui for visualizing the data.
Importantly, the object also interfaces with scikit-learn
to allow the cluser and decomposition classes (e.g. PCA,
ICA, K-means) to be used directly with the object.
-
Dataset object (
hypers.Dataset
)This class forms the core of hypers. It provides useful information about the hyperspectral data and makes machine learning on the data simple.
-
Interactive hyperspectral viewer
A lightweight pyqt gui that provides an interative interface to view the hyperspectral data.
Please note that this package is currently in pre-release. The first general release will be v0.1.0
Hyperspectral data
Whilst this package is designed to work with any type of hyperspectral data, of the form of either of the following:
,
some of the features are particularly useful for vibrational-scattering related hyperspectral data (e.g. Raman micro-spectroscopy), e.g. the spectral component of the hyperspectral viewer (see figure above).
Installation
To install using pip
:
pip install hypers
The following packages are required:
- numpy
- matplotlib
- scipy
- scikit-learn
- PyQt5
- pyqtgraph
Features
Features implemented in hypers
include:
- Clustering (e.g. KMeans, Spectral clustering, Hierarchical clustering)
- Decomposition (e.g. PCA, ICA, NMF)
- Hyperspectral viewer
Examples
Hyperspectral dimensionality reduction and clustering
Below is a quick example of using some of the features of the package on a randomized hyperspectral array. For an example using the IndianPines dataset, see the Jupyter notebook in the examples/ directory.
import numpy as np
import hypers as hp
from sklearn.decomposition import PCA
from sklearn.cluster import KMeans
# Generating a random 4-d dataset and creating a Dataset instance
# The test dataset here has spatial dimensions (x=200, y=200, z=10) and spectral dimension (s=1024)
test_data = np.random.rand(200, 200, 10, 1024)
X = hp.Dataset(test_data)
# Using Principal Components Analysis to reduce to first 5 components
# The variables ims, spcs are arrays of the first 5 principal components for the images, spectra respectively
ims, spcs = X.decompose(
mdl=PCA(n_components=5)
)
# Clustering using K-means (with and without applying PCA first)
# The cluster method will return the labeled image array and the spectrum for each cluster
lbls_nodecompose, spcs_nodecompose = X.cluster(
mdl=KMeans(n_clusters=3),
decomposed=False
)
# Clustering on only the first 5 principal components
lbls_decomposed, spcs_decomposed = X.cluster(
mdl=KMeans(n_clusters=3),
decomposed=True,
pca_comps=5
)
Documentation
The docs are hosted here.
License
hypers is licensed under the OSI approved BSD 3-Clause License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file hypers-0.0.10.tar.gz
.
File metadata
- Download URL: hypers-0.0.10.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c483185905ec0f861383893929d23ad608f25bd83682137586940d7a12e2fe39 |
|
MD5 | ec0bc729ddea0c7d371749e7e345eb3d |
|
BLAKE2b-256 | 041f96920660e44d060d4c70d263106be59a9705c8e990cff4e96d6e1a488d52 |
File details
Details for the file hypers-0.0.10-py3-none-any.whl
.
File metadata
- Download URL: hypers-0.0.10-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6af6dcc7897f6ed330109084100a4bb14d6889b8d9a877163aedc8daf19a322f |
|
MD5 | d691cf8e002ac49a1dc9223851e72b0b |
|
BLAKE2b-256 | 88ee1bc240ff268bd16a707f1fcfa07f50472401042d7f1aae81b10797866b36 |