特征 Resources

Showing items tagged with "特征"

This MATLAB program implements texture-based image retrieval source code, where texture features serve as fundamental image characteristics. The implementation focuses on texture feature extraction using Gray-Level Co-occurrence Matrix (GLCM) for statistical analysis of pixel relationships, making it particularly relevant for contemporary image processing applications.

MATLAB 175 views Tagged

This code demonstrates image segmentation using Support Vector Machines - The implementation utilizes an image featuring a yellow duck hunting insects on a blue lake surface. Due to the distinct color contrast, RGB pixel values are selected as features. The implementation includes feature extraction, SVM model training, and pixel classification for region separation.

MATLAB 203 views Tagged

A comprehensive Contourlet transform toolkit for image feature extraction supporting customizable decomposition levels - for instance, three-level decomposition extracts 17-dimensional feature vectors suitable for texture analysis and SAR image segmentation applications.

MATLAB 271 views Tagged

Edges represent the most fundamental features in images and serve as the first step in image segmentation. Classical edge detection methods—such as Roberts, Sobel, Prewitt, Kirsch, and Laplace—generally operate by constructing small neighborhood operators to compute first or second-order derivatives, identifying gradient maxima or zero-crossings of the second derivative, and finally applying a suitable threshold to extract boundaries. These gradient-based methods, however, are noise-sensitive and computationally intensive. In contrast, the SUSAN (Smallest Univalue Segment Assimilating Nucleus) algorithm relies solely on grayscale comparisons of surrounding pixels without any gradient calculations, making it highly robust to noise and computationally efficient. SUSAN has been effectively applied in edge detection for various types of images.

MATLAB 186 views Tagged