边缘 Resources

Showing items tagged with "边缘"

A versatile edge detection function capable of implementing Sobel, Prewitt, Roberts, Marr, and Canny operators through parameter configuration. Includes comprehensive design documentation with algorithm explanations and implementation details.

MATLAB 226 views Tagged

A robust video edge detection algorithm implemented in MATLAB for detecting edges in video sequences. This implementation demonstrates effective edge detection with good stability, using techniques like frame-by-frame processing and edge detection operators such as Sobel or Canny. The code structure and algorithm approach provide valuable learning references for video processing applications.

MATLAB 213 views Tagged

This program employs wavelet transform methodology to extract image contours for registration purposes. The implementation first detects edges using wavelet decomposition, identifies the longest continuous contour, computes curvature at sampled points, and performs data matching to determine optimal transformation parameters for precise image alignment.

MATLAB 228 views Tagged

An effective edge detection method called CORNER for finding corners in intensity images. The algorithm operates through these key steps: 1) Apply Canny edge detector to grayscale image to generate binary edge map, 2) Extract edge contours from the edge map and fill gaps in contours. Implementation typically involves using edge detection functions like edge() with 'Canny' option and contour tracing algorithms.

MATLAB 197 views Tagged