线连接 Resources

Showing items tagged with "线连接"

This program implements feature point matching between two images using a three-stage approach: first detecting corners with Harris corner detection algorithm, then filtering matching points using Sum of Squared Differences (SSD) algorithm, and finally connecting matched points with lines for visualization. The implementation includes parameter tuning capabilities for optimizing matching accuracy.

MATLAB 193 views Tagged

A robust image stitching program that utilizes SIFT algorithm for feature point extraction, implements mismatch filtering algorithms, and visualizes matched points with connecting lines. Key implementation note: The main function is match.m - after running the main function, enter match('image1.jpg', 'image2.jpg') in the command window.

MATLAB 173 views Tagged