How can i apply RANSAC on the matched points of the SURF meathod
10 次查看(过去 30 天)
显示 更早的评论
Hello everyone,
I have a video segemented into frames where i am comparing each frame of the video with a one constant picture.
I am using the method detectSURFFeatures()
How by ploting the matched features on the pictures,i noticed that i have arround 10% of the data that are wrong matches
I have read that the RANSAC method can help removing the outliers but so far, I had not lack to find a good example
here is the code snipped i am using (it might give you a better idea on what i did ) :
fixationImagePoints = detectSURFFeatures(fixationImage);
originalImagePoints = detectSURFFeatures(originalImage);
[fFixationImagePoints, vFixationImagePoints] = extractFeatures(fixationImage, fixationImagePoints);
[fOriginalImagePoints, vOriginalImagePoints] = extractFeatures(originalImage, originalImagePoints);
indexPairs = matchFeatures(fFixationImagePoints, fOriginalImagePoints) ;
fixationImageMatchedPoints = vFixationImagePoints(indexPairs(:, 1));
originalImageMatchedPoints = vOriginalImagePoints(indexPairs(:, 2));
Hopefully someone here can give me a clue on how to use the RANSAC or give me a different approache.
Thanks in advance.
0 个评论
回答(1 个)
Puru Kathuria
2021-3-14
Hi,
You might want to look at this video tutorial which explains feature detection, extraction, and matching followed by an estimation of the geometric transformation using the RANSAC algorithm.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 3-D Volumetric Image Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!