-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5718347
commit ca541f3
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
""" | ||
This file contains the configuration for the number of initial points to be used in the RANSAC algorithm. | ||
This number is used to generate random indices for the initial points. | ||
It can be configured to generate differen number of initial points. | ||
It is used by functions inside both the RANSAC class and the util module. | ||
It can be configured to generate different number of initial points. | ||
It is used by functions inside both the RANSAC class and the util module | ||
and because of that it is placed in a separate file. | ||
""" | ||
|
||
N_INITIAL_POINTS = 6 |