How to implement RanSac Algorithm using OpenCV to remove outliers?
For example, we have 6 points with x and y coordinates. Two of them are outliers. We want to join remaining points using RanSac. Thanks in advance.
In what way points should be joined? What is the model for your task?
The function findHomography() uses the RANSAC algorithm for classification and have an optional output showing which of the input data is an outlier. For now I use this as a hack to eliminate outliers...