MCPcopy Create free account
hub / github.com/JimmyHHua/opencv_tutorials / pyramid_down

Function pyramid_down

python/code_037/opencv_037.py:4–9  ·  view source on GitHub ↗
(pyramid_images)

Source from the content-addressed store, hash-verified

2
3
4def pyramid_down(pyramid_images):
5 level = len(pyramid_images)
6 print("level = ",level)
7 for i in range(level-1, -1, -1):
8 expand = cv.pyrUp(pyramid_images[i])
9 cv.imshow("pyramid_down_"+str(i), expand)
10
11
12def pyramid_up(image, level=3):

Callers 1

opencv_037.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected