|
RANSACTModel Constructor (Int32, Double, Double)
|
Constructs a new RANSAC algorithm.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public RANSAC(
int minSamples,
double threshold,
double probability
)
Public Sub New (
minSamples As Integer,
threshold As Double,
probability As Double
)
Request Example
View SourceParameters
- minSamples
- Type: SystemInt32
The minimum number of samples from the data
required by the fitting function to fit a model.
- threshold
- Type: SystemDouble
The minimum distance between a data point and
the model used to decide whether the point is
an inlier or not.
- probability
- Type: SystemDouble
The probability of obtaining a random sample of
the input points that contains no outliers.
See Also