Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/JimmyHHua/opencv_tutorials
/ canny_demo
Function
canny_demo
python/code_048/opencv_048.py:14–18 ·
view source on GitHub ↗
(image)
Source
from the content-addressed store, hash-verified
12
13
14
def
canny_demo(image):
15
t = 100
16
canny_output = cv.Canny(image, t, t * 2)
17
cv.imshow(
"canny_output"
, canny_output)
18
return
canny_output
19
20
21
src = cv.imread(
"yuan_test.png"
)
Callers
1
opencv_048.py
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected