2.几何变换_图像金字塔

2.几何变换_图像金字塔_第1张图片

#导入工具包

from imutils import *

#读入图片

image = imread('image.jpg')
show(image)
image.shape

2.几何变换_图像金字塔_第2张图片

#高斯金字塔

for i in range(4):
    image = cv2.pyrDown(image)
    print(image.shape)
    show(image)

2.几何变换_图像金字塔_第3张图片2.几何变换_图像金字塔_第4张图片2.几何变换_图像金字塔_第5张图片2.几何变换_图像金字塔_第6张图片

for i in range(4):
    image = cv2.pyrUp(image)
    print(image.shape)
    show(image)

2.几何变换_图像金字塔_第7张图片2.几何变换_图像金字塔_第8张图片2.几何变换_图像金字塔_第9张图片2.几何变换_图像金字塔_第10张图片

# 拉普拉斯金字塔
image = imread('image.jpg')
down_image1 = cv2.pyrDown(image)
down_image2 = cv2.pyrDown(down_image1)
up_image = cv2.pyrUp(down_image2)
laplacian = down_image1-up_image
show(laplacian)

2.几何变换_图像金字塔_第11张图片

你可能感兴趣的:(2.几何变换_图像金字塔)