多分类 Resources

Showing items tagged with "多分类"

This MATLAB program implements a comprehensive facial recognition pipeline that first processes face images using Gabor wavelet transformation for feature extraction, then applies PCA (Principal Component Analysis) for dimensionality reduction, and finally employs an SVM (Support Vector Machine) classifier for multi-class recognition. The implementation supports the complete ORL face database and utilizes the libsvm toolbox (version: libsvm-mat-2.89-3[FarutoUltimate3.0]). Key implementation details include Gabor filter parameter configuration, PCA eigenvector computation, and SVM kernel function selection for optimal multi-class classification performance.

MATLAB 203 views Tagged

While SVM is typically applied to binary classification, this code utilizes Chih-Jen Lin's SVM toolkit for multi-class classification. The implementation is tested on the UCI IRIS dataset, demonstrating excellent performance through one-vs-one strategy and parameter optimization techniques.

MATLAB 230 views Tagged