Basic PCA based log-Likelihood Classifier

版本 1.2.0.0 (1.3 MB) 作者: Dirk-Jan Kroon
PCA algorithm suitable for detection / recognition of 2D image "objects"
9.4K 次下载
更新时间 2010/2/11

查看许可证

Introduction:
Many image problems require some kind of detection of objects, in which there is a natural variation in appearance of the objects between the images. For instance, face recognition, lesion detection, nerve channel segmentation.

These image problems can be solved by manually annotating of image objects to train a model which recognize normal object appearance. This can be done with a PCA based maximum likelihood classifier.

Software Description:
We provide here a basic PCA classifier for a two class classification problem. Two class is the most common, is an pixel a brain lesion or not?, is this face of the home owner or not?

Multiple Sclerosis example:
An example is given, with some multimodal MRI scans from Multiple Sclerosis patients, in which the brain lesions of two patients are annotated and in the third are detected by the PCA model. This example uses the gray-value regions and gray-value derivatives as feature vectors. But by using more or other features this example can be easily extended to your own recognition / detection example.

This example uses some c-code to get the image regions for speed improvement.

Literature:
- Kroon, D.J. and van Oort, E.S.B. and Slump, C.H. "Multiple Sclerosis Detection in Multispectral Magnetic Resonance Images with Principal Components Analysis"
- Kauffman et al. "Grip-pattern recognition for smart guns"

Final:
Try/study and than extend the example to your own application.

Please report bugs, success and suggestions.

引用格式

Dirk-Jan Kroon (2024). Basic PCA based log-Likelihood Classifier (https://www.mathworks.com/matlabcentral/fileexchange/24817-basic-pca-based-log-likelihood-classifier), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Dimensionality Reduction and Feature Extraction 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.2.0.0

Changed (I'm not entirely sure if it is correct) :
[U,S] = svd(G);
Geigenvalue=diag(S).^2
to
Geigenvalue=diag(S);

1.1.0.0

Linux Ubuntu Tested

1.0.0.0