Hyperspectral data analysis and machine learning
Project description
hypers
hypers provides a data structure in python for hyperspectral data. The data structure includes:
- Tools for processing and exploratory analysis of hyperspectral data
- Interactive hyperspectral viewer (using PyQt) that can be accessed as a method from the object
- Allows for unsupervised machine learning directly on the object
The data structure is built on top of the numpy ndarray
, and this package simply adds additional functionality that
allows for quick analysis of hyperspectral data. Importantly, this means that the object can still be used as a
normal numpy array.
Please note that this package is currently in pre-release. It can still be used, however there is likely to be significant changes to the API. The first public release will be v0.1.0.
Contents
Installation
To install using pip
:
pip install hypers
The following packages will also be installed:
- numpy
- matplotlib
- scipy
- scikit-learn
- PyQt5
- pyqtgraph
Features
Features implemented in hypers
include:
- Clustering
- Decomposition (e.g. PCA, ICA, NMF)
- Hyperspectral viewer
- Vertex component analysis
- Gaussian mixture models
A full list of features can be found here.
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
# 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.array(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.pca.calculate(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.kmeans.calculate(
n_clusters=3,
decomposed=False
)
# Clustering on only the first 5 principal components
lbls_decomposed, spcs_decomposed = X.cluster.kmeans.calculate(
n_clusters=3,
decomposed=True,
pca_comps=5
)
Interactive viewer
The interactive viewer can be particularly helpful for exploring a completely new dataset for the first time to get a feel for the type of data you are working with. An example from a coherent anti-Stokes Raman (CARS) dataset is shown below:
Documentation
The docs are hosted here.
License
hypers is licensed under the OSI approved BSD 3-Clause License.
References
- VCA algorithm
J. M. P. Nascimento and J. M. B. Dias, "Vertex component analysis: a fast algorithm to unmix hyperspectral data," in IEEE Transactions on Geoscience and Remote Sensing, 2005
Adapted from repo.
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.12.2.tar.gz
.
File metadata
- Download URL: hypers-0.0.12.2.tar.gz
- Upload date:
- Size: 14.7 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 | 322df7cfd44f173b9777ebb96a54312720814ffd43a94d92020000b7073475fe |
|
MD5 | 3f84ff56365d8f91d4a7e1c2d54b44fc |
|
BLAKE2b-256 | 1d15b81aa5f8af4a1fa6af1143c5e8dd9d80ef59655a84603bf2778267c8c69a |
File details
Details for the file hypers-0.0.12.2-py3-none-any.whl
.
File metadata
- Download URL: hypers-0.0.12.2-py3-none-any.whl
- Upload date:
- Size: 34.3 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 | b725cafefb641ddae74213c495da7a8726f620898dd7f703ce605ee5ef03ed26 |
|
MD5 | c6f3b069b5111272931207ab1b74e1ee |
|
BLAKE2b-256 | 5852ca40282cdbd5c939f66a9a55b5e64e97eae2aecc03a6bf47765685dd9129 |