Image gradients like Sobel and Laplacian help find edges by showing where pixel brightness changes sharply.
We measure how well these gradients detect true edges versus noise. Key metrics include Edge Detection Accuracy, Precision, and Recall.
Precision tells us how many detected edges are real edges (avoiding false edges).
Recall tells us how many real edges were found (avoiding missed edges).
Good edge detection balances both, so we often use the F1 score to combine precision and recall.