Model Pipeline - Edge detection (Canny)
The Canny edge detection pipeline finds edges in images by smoothing, finding gradients, and selecting strong edges. It helps computers see outlines like we do.
The Canny edge detection pipeline finds edges in images by smoothing, finding gradients, and selecting strong edges. It helps computers see outlines like we do.
Loss
0.5 |****
0.4 |***
0.3 |**
0.2 |*
0.1 |
+---------
Epochs 1-5| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.45 | 0.60 | Initial edge detection with many false edges |
| 2 | 0.30 | 0.75 | Better edge clarity after tuning thresholds |
| 3 | 0.20 | 0.85 | Edges are sharper and noise reduced |
| 4 | 0.15 | 0.90 | Strong edges well detected, weak edges properly filtered |
| 5 | 0.12 | 0.92 | Converged to stable edge detection performance |