Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/JimmyHHua/opencv_tutorials
/ canny_demo
Function
canny_demo
python/code_060/opencv_060.py:5–9 ·
view source on GitHub ↗
(image)
Source
from the content-addressed store, hash-verified
3
4
5
def
canny_demo(image):
6
t = 80
7
canny_output = cv.Canny(image, t, t * 2)
8
cv.imwrite(
"canny_output.png"
, canny_output)
9
return
canny_output
10
11
12
src = cv.imread(
"morph01.png"
)
Callers
1
opencv_060.py
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected