图像分类 Resources

Showing items tagged with "图像分类"

This MATLAB implementation performs keypoint detection on input images, identifying salient points that typically correspond to important objects within the image. These keypoints serve as robust features for object recognition and image classification tasks. The algorithm can be executed by running the demonstration script Ldx_GoSalScale.m (compatible with MATLAB 7.0 environment), which showcases practical usage examples and demonstrates the core detection methodology.

MATLAB 361 views Tagged

The CVPR 2011 paper "Feature Context for Object Detection and Image Classification" by Xinggang Wang and Xiang Bai presents a novel approach for object detection and image classification through feature context utilization, introducing implementation insights for contextual feature extraction and integration algorithms.

MATLAB 310 views Tagged

Deep-net is a deep learning architecture composed of Self-Encoder Algorithm (SEA) for feature extraction and a softmax classifier for categorization. SEA automatically captures the most significant features from input data, and when combined with softmax, enables accurate image classification. This model demonstrates superior performance compared to other approaches in image classification tasks, with implementation typically involving stacked autoencoders for unsupervised pre-training followed by supervised fine-tuning of the classification layer.

MATLAB 359 views Tagged