Created
August 30, 2022 20:57
-
-
Save erykml/a6000d95b977030227b64ec64634d4bf 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
plt.scatter(X[inlier_mask], y[inlier_mask], color="blue", label="Inliers") | |
plt.scatter(X[outlier_mask], y[outlier_mask], color="red", label="Outliers") | |
plt.title("RANSAC - outliers vs inliers"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment