Module 1: Demo¶
This page will eventually host an interactive OpenCV demo.
For now, it's just a stub page.
Module 1: Edge Detection Demo¶
In this demo, you can explore how the Canny edge detector responds to different threshold values.
Use the sliders to adjust the thresholds and see the effect in real time.
How this works under the hood
The browser sends the chosen thresholds to a small Python/OpenCV backend (via FastAPI). The backend runs Canny edge detection on a fixed image and returns the result as a PNG, which is then displayed here.