Skip to content

Instantly share code, notes, and snippets.

@erykml
Created August 30, 2022 20:57
Show Gist options
  • Save erykml/a6000d95b977030227b64ec64634d4bf to your computer and use it in GitHub Desktop.
Save erykml/a6000d95b977030227b64ec64634d4bf to your computer and use it in GitHub Desktop.
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