二值图像 Resources

Showing items tagged with "二值图像"

Refining the edges of binary images acquired through shape edge detection to extract single-pixel edges, resulting in clear and distinct single-pixel boundaries. This process typically involves iterative thinning algorithms such as Zhang-Suen or morphological operations to reduce edge width while preserving connectivity.

MATLAB 202 views Tagged

This MATLAB code implements standard Hough Transform for detecting lines in binary images, demonstrating the working mechanism of this fundamental computer vision technique. The implementation uses polar coordinate representation and accumulator arrays to identify linear patterns.

MATLAB 188 views Tagged

This MATLAB-based simulation for object tracking has been personally validated and verified as functional. The implementation enables target marking with rectangular bounding boxes, converts grayscale images to binary images, and achieves robust object tracking through practical algorithm application.

MATLAB 174 views Tagged

This corner detection program can identify all convex and concave points in images and display them on binary images with excellent results. Simply run corner.m directly - the implementation utilizes feature detection algorithms to locate key points where image intensity changes significantly in multiple directions.

MATLAB 192 views Tagged