Commit 5fde16ba authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #14712 from SchultzC:master

parents 394bc91e edb3337e
...@@ -69,7 +69,7 @@ def main(argv): ...@@ -69,7 +69,7 @@ def main(argv):
dst0 = sharpen(src) dst0 = sharpen(src)
t = (time.time() - t) / 1000 t = (time.time() - t)
print("Hand written function time passed in seconds: %s" % t) print("Hand written function time passed in seconds: %s" % t)
cv.imshow("Output", dst0) cv.imshow("Output", dst0)
...@@ -86,7 +86,7 @@ def main(argv): ...@@ -86,7 +86,7 @@ def main(argv):
# ddepth = -1, means destination image has depth same as input image # ddepth = -1, means destination image has depth same as input image
## [filter2D] ## [filter2D]
t = (time.time() - t) / 1000 t = (time.time() - t)
print("Built-in filter2D time passed in seconds: %s" % t) print("Built-in filter2D time passed in seconds: %s" % t)
cv.imshow("Output", dst1) cv.imshow("Output", dst1)
......
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