特征点 Resources

Showing items tagged with "特征点"

Recovering 3D structure from motion in noisy 2D images is a fundamental problem addressed by computer vision researchers. By consistently tracking feature points across multiple images using the Lucas-Kanade optical flow algorithm, the Tomasi-Kanade factorization method enables 3D shape reconstruction through matrix decomposition of the feature point trajectories.

MATLAB 274 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

The Scale-invariant Feature Transform (SIFT) is a computer vision algorithm for detecting and describing local image features. It identifies keypoints by finding extrema in scale space and extracts their position, scale, and rotation-invariant descriptors. Developed by David Lowe in 1999 and refined in 2004, this algorithm enables robust image matching by comparing feature descriptors. The implementation in t2.m demonstrates how to extract SIFT features and match tampered regions between two images using descriptor comparison algorithms.

MATLAB 213 views Tagged

Image registration process using thin plate splines involves the following steps: First, feature extraction from both images to obtain feature points; then finding matching feature pairs through similarity measurement. Accurate feature extraction ensures successful feature matching. Therefore, finding feature extraction methods with good invariance and accuracy is crucial for matching precision. This implementation uses thin plate splines for image registration, which provides smooth deformation fields while minimizing bending energy.

MATLAB 201 views Tagged