高斯滤波器 Resources

Showing items tagged with "高斯滤波器"

Recent studies on mathematical modeling of visual cortical cells [Kulikowski/Marcelja/Bishop:1982] propose a tuned band-pass filter bank structure, characterized by Gaussian transfer functions in the frequency domain. Implementation typically involves Gabor filter approximations through inverse Fourier transforms of Gaussian functions modulated by complex sinusoids.

MATLAB 254 views Tagged

The Canny detector is a highly effective edge detection algorithm that extracts edges from target images through a multi-step process. The method involves: 1. Image smoothing using a Gaussian filter with specified standard deviation to reduce noise; 2. Calculation of local gradient magnitude and edge direction at each pixel; 3. Non-maximum suppression to thin edges by preserving only ridge tops in gradient magnitude; 4. Edge linking through hysteresis thresholding. This algorithm is widely implemented in computer vision libraries with optimized gradient computation and dual-threshold techniques.

MATLAB 256 views Tagged

(1) Implement a Canny edge detector function using MATLAB (or C) with Gaussian filtering capabilities; (2) Apply this custom function to detect edges in images corrupted by salt-and-pepper or Gaussian noise; (3) Utilize MATLAB's built-in Canny edge detection function on the same noisy images; (4) Perform comparative analysis between both approaches to evaluate performance differences.

MATLAB 435 views Tagged