Commit b1a5c762 authored by xitong's avatar xitong

Fix a typo

parent 9612397a
...@@ -40,7 +40,7 @@ goal): ...@@ -40,7 +40,7 @@ goal):
img1 = cv.imread('messi5.jpg') img1 = cv.imread('messi5.jpg')
e1 = cv.getTickCount() e1 = cv.getTickCount()
for i in xrange(5,49,2): for i in range(5,49,2):
img1 = cv.medianBlur(img1,i) img1 = cv.medianBlur(img1,i)
e2 = cv.getTickCount() e2 = cv.getTickCount()
t = (e2 - e1)/cv.getTickFrequency() t = (e2 - e1)/cv.getTickFrequency()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment