Created
August 30, 2022 20:56
-
-
Save erykml/9cbc279b5cb37865bc824ebd65bd418e to your computer and use it in GitHub Desktop.
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
inlier_mask = ransac.inlier_mask_ | |
outlier_mask = ~inlier_mask | |
print(f"Total outliers: {sum(outlier_mask)}") | |
print(f"Outliers we have added ourselves: {sum(outlier_mask[:N_OUTLIERS])} / {N_OUTLIERS}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment