图像处理 Resources

Showing items tagged with "图像处理"

Histogram equalization is an image processing technique that redistributes pixel intensities to transform an image's histogram from a concentrated range to a uniform distribution across the entire grayscale spectrum. This non-linear stretching operation enhances contrast by making pixel counts approximately equal within intensity ranges. While effective for improving local contrast, it may reduce grayscale levels and cause unnatural over-enhancement in high-peak histograms. Implementation typically involves calculating cumulative distribution functions and mapping original intensities to new values.

MATLAB 244 views Tagged

Hough Transform is a fundamental method in image processing. This file provides a MATLAB implementation of Hough Transform developed without using MATLAB's built-in functions, making it ideal for learning and mastering Hough Transform algorithms from scratch.

MATLAB 229 views Tagged

A comprehensive image processing program developed in MATLAB featuring: P0801 - Call Number Text Image Segmentation, P0802 - Connected Character Segmentation, P0803 - Text Recognition, P0804 - Color License Plate Segmentation, P0805 - Trademark Text Segmentation, with auxiliary functions including: Recognition - text recognition subfunction, StrDetect01 - structural feature extraction subfunction for text recognition

MATLAB 240 views Tagged

Image acquisition from camera devices on MATLAB platform with comprehensive image processing capabilities, featuring implementation details of Image Acquisition Toolbox functions and image processing algorithms.

MATLAB 247 views Tagged

Perona and Malik established an anisotropic diffusion equation based on the heat conduction equation and applied it to scale-space image smoothing in image processing. This model performs distinct processing on edge and non-edge regions of images, features simple iterative solving schemes, overcomes major drawbacks of traditional filtering methods, significantly improves image quality, and pioneers new directions for image edge detection and enhancement. The implementation typically involves gradient-based diffusion coefficient calculations and iterative updates using finite difference methods.

MATLAB 281 views Tagged