matlab高光谱工具箱,matlab_hyperspectral_toolbox_v0.07

MATLAB_Hyperspectral_Toolbox_v0.07是一个用于高光谱数据处理的工具箱,包括读取、转换、预处理和分析等功能。依赖于FastICA库,支持AVIRIS、ASD等格式的数据读取。提供如数据转换、去条带、匹配滤波、分类等多种算法。适合于进行高光谱图像分析的MATLAB用户。
摘要由CSDN通过智能技术生成

matlab_hyperspectral_toolbox_v0.07

所属分类:图形图像处理

开发工具:matlab

文件大小:44KB

下载次数:93

上传日期:2012-12-06 16:04:53

上 传 者:BOZEN

说明:  matlab 高光谱处理工具箱 hyperspecreleasesmatlab_hyperspectral_toolbox_v0.07.zip

( Matlab Hyperspectral Toolbox

Copyright 2008-2012 Isaac Gerg

-------------------------------------------------------------------------

A Note on Notation

Hyperspectral data is often expressed many ways to better describe the

mathematical handling of the data mainly as a vector of pixels when

referring to the data in a space or a matrix of pixels when referring to

data as an image.

-------------------------------------------------------------------------

Dependencies

FastICA- http://www.cis.hut.fi/projects/ica/fastica/code/dlcode.shtml

------------

% Matlab Hyperspectral Toolbox % Copyright 2008-2012 Isaac Gerg % % ------------------------------------------------------------------------- % A Note on Notation % Hyperspectral data is often expressed many ways to better describe the % mathematical handling of the data; mainly as a vector of pixels when % referring to the data in a space or a matrix of pixels when referring to % data as an image. % ------------------------------------------------------------------------- % Dependencies % FastICA - http://www.cis.hut.fi/projects/ica/fastica/code/dlcode.shtml % % ------------------------------------------------------------------------- % Functions % % Reading/Writing Data Files % hyperReadAvirisRfl - Reads AVIRIS .rfl files % hyperReadAvirisSpc - Read AVIRIS .spc files % hyperReadAsd - Reads ASD Fieldspec files. (.asd, .000, etc) % % Data Formatting % hyperConvert2D - Converts data from a 3D HSI data cube to a 2D matrix % hyperConvert3D - Converts data from a 2D matrix to a 3D HSI data cube % hyperNormalize - Normalizes data to be in range of [0,1] % hyperConvert2Jet - Converts a 2D matrix to jet colormap values % hyperResample - Resamples hyperspectral data to new wavelength set % % Unmixing % hyperAtgp - ATGP algorithm % hyperIcaEea - ICA-Endmember Extraction Algorithm % hyperIcaComponentScores - Computes ICA component scores for relevance % hyperVca - Vertex Component Analysis % hyperPPI - Pixel Purity Index % % Target Detection % hyperACE - Adaptive cosine/coherent estimator % hyperGLRT - Generalized liklihood ratio test % hyperHUD - Hybrid instructured detector % hyperAMSD - Adaptive matched subspace detector % hyperMatchedFilter - Matched filter % hyperOsp - Orthogonal subspace projection % hyperCem - Constrained energy minimization % hyperPlmf - PCA local matched filter % hyperRmf - Regularized match filter % % Material Count Estimation % hyperHfcVd - Computes virtual dimensionality (VD) using HFC method % % Data Conditioning % hyperPct - Pricipal component transform % hyperMnf - Minimum noise fraction % hyperDestreak - Destreaking algorithm % % Abundance Map Generation % hyperUcls - Unconstrained least squares % hyperNnls - Non-negative least squares % hyperFcls - Fully constrains least squares % % Spectral Measuring % hyperSam - Spectral Angle Mapper % hyperSid - Spectral Information Divergence % hyperNormXCorr - Normalized Cross Correlation % % Miscellaneous % hyperMax2d - Finds the max value and corresonding position in a matrx % % Sensor Specific % hyperGetHymapWavelengthsNm - Returns list of Hymap wavelengths % % Statistics % hyperCov - Sample covariance matrix estimator % hyperCorr - Sample autocorrelation matrix estimator % % Demos % hyperDemo - General toolbox usage % hyperDemo_detectors - Target detection algorithms % hyperDemo_RIT_data - RIT target detection blind test % hyperDemo_ASD_reader - Reads ASD Fieldspec files
% Matlab Hyperspectral Toolbox % Copyright 2008-2009 Isaac Gerg % % ------------------------------------------------------------------------- % A Note on Notation % Hyperspectral data is often expressed many ways to better describe the % mathematical handling of the data; mainly as a vector of pixels when % referring to the data in a space or a matrix of pixels when referring to % data as an image. % For consistency, a common notation is defined to % differentiate these concepts clearly. Hyperspectral data examined like an % image will be defined as a matrix Mm譶譸 of dimension m �n �p where m % is defined as the number of rows in the image, n is defined as the % number of columns in the image, and p is defined as the number of bands % in the image. Therefore, a single element of such an image will be % accessed using Mi,j,k and a single pixel of an image will be accessed % using Mi,j,: Hyperspectral data formed as a vector of vectors % (i.e. 2D matrix) is defined as M(m穘)譸 of dimension (m�n)譸. % A single element is accessed using Mi,j and a single pixel is % accessed using M:,j . Notice the multi-element notation is consistent % with MatlabTM this is intentional. % The list below provides a summary of the notation convention used % throughout this code. % % M Data matrix. Defined as an image of spectral signatures or vectors: % Mm譶譸. Or, defined as a long vector of spectral signatures: % M(m穘)譸. % N The total number of pixels. For example N = m �n. % m Number of rows in the image. % n Number of columns in the image. % p Number of bands. % q Number of classes / endmembers. % U Matrix of endmembers. Each column of the matrix represents an % endmember vector. % b Observation vector; a single pixel. % x Weight vector. A matrix of weight vectors forms an abundance % map. % % ------------------------------------------------------------------------- % Dependencies % FastICA - http://www.cis.hut.fi/projects/ica/fastica/code/dlcode.shtml % % ------------------------------------------------------------------------- % Functions % % Reading/Writing Data Files % hyperReadAvirisRfl - Reads AVIRIS .rfl files % hyperReadAvirisSpc - Read AVIRIS .spc files % hyperReadAsd - Reads ASD Fieldspec files. (.asd, .000, etc) % % Data Formatting % hyperConvert2D - Converts data from a 3D HSI data cube to a 2D matrix % hyperConvert3D - Converts data from a 2D matrix to a 3D HSI data cube % hyperNormalize - Normalizes data to be in range of [0,1] % hyperConvert2Jet - Converts a 2D matrix to jet colormap values % hyperResample - Resamples hyperspectral data to new wavelength set % % Unmixing % hyperAtgp - ATGP algorithm % hyperIcaEea - ICA-Endmember Extraction Algorithm % hyperIcaComponentScores - Computes ICA component scores for relevance % hyperVca - Vertex Component Analysis % hyperPPI - Pixel Purity Index % % Target Detection % hyperACE - Adaptive cosine/coherent estimator % hyperGLRT - Generalized liklihood ratio test % hyperHUD - Hybrid instructured detector % hyperAMSD - Adaptive matched subspace detector % hyperMatchedFilter - Matched filter % hyperOsp - Orthogonal subspace projection % hyperCem - Constrained energy minimization % % Material Count Estimation % hyperHfcVd - Computes virtual dimensionality (VD) using HFC method % % Data Conditioning % hyperPct - Pricipal component transform % hyperMnf - Minimum noise fraction % hyperDestreak - Destreaking algorithm % % Abundance Map Generation % hyperUcls - Unconstrained least squares % hyperNnls - Non-negative least squares % hyperFcls - Fully constrains least squares % % Spectral Measuring % hyperSam - Spectral Angle Mapper % hyperSid - Spectral Information Divergence % hyperNormXCorr - Normalized Cross Correlation % % Miscellaneous % hyperMax2d - Finds the max value and corresonding position in a matrx % % Sensor Specific % hyperGetHymapWavelengthsNm - Returns list of Hymap wavelengths % % Statistics % hyperCov - Sample covariance matrix estimator % hyperCorr - Sample autocorrelation matrix estimator % % Demos % hyperDemo - General toolbox usage % hyperDemo_detectors - Target detection algorithms % hyperDemo_RIT_data - RIT target detection blind test % hyperDemo_ASD_reader - Reads ASD Fieldspec files
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值