色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術文章
文章詳情頁

python實現圖像高斯金字塔的示例代碼

瀏覽:85日期:2022-07-02 14:58:51

import cv2import numpy as npimport matplotlib.pyplot as plt# Grayscaledef BGR2GRAY(img): # Grayscale gray = 0.2126 * img[..., 2] + 0.7152 * img[..., 1] + 0.0722 * img[..., 0] return gray# Bi-Linear interpolationdef bl_interpolate(img, ax=1., ay=1.): if len(img.shape) > 2: H, W, C = img.shape else: H, W = img.shape C = 1 aH = int(ay * H) aW = int(ax * W) # get position of resized image y = np.arange(aH).repeat(aW).reshape(aW, -1) x = np.tile(np.arange(aW), (aH, 1)) # get position of original position y = (y / ay) x = (x / ax) ix = np.floor(x).astype(np.int) iy = np.floor(y).astype(np.int) ix = np.minimum(ix, W-2) iy = np.minimum(iy, H-2) # get distance dx = x - ix dy = y - iy if C > 1: dx = np.repeat(np.expand_dims(dx, axis=-1), C, axis=-1) dy = np.repeat(np.expand_dims(dy, axis=-1), C, axis=-1) # interpolation out = (1-dx) * (1-dy) * img[iy, ix] + dx * (1 - dy) * img[iy, ix+1] + (1 - dx) * dy * img[iy+1, ix] + dx * dy * img[iy+1, ix+1] out = np.clip(out, 0, 255) out = out.astype(np.uint8) return out# make image pyramiddef make_pyramid(gray): # first element pyramid = [gray] # each scale for i in range(1, 6): # define scale a = 2. ** i # down scale p = bl_interpolate(gray, ax=1./a, ay=1. / a) # add pyramid list pyramid.append(p) return pyramid# Read imageimg = cv2.imread('../bird.png').astype(np.float)gray = BGR2GRAY(img)# pyramidpyramid = make_pyramid(gray)for i in range(6): cv2.imwrite('out_{}.jpg'.format(2**i), pyramid[i].astype(np.uint8)) plt.subplot(2, 3, i+1) plt.title(’1/’ + str((i+1)**2) ) plt.imshow(pyramid[i], cmap=’gray’) plt.axis(’off’) plt.xticks(color='None') plt.yticks(color='None')plt.show()

python實現圖像高斯金字塔的示例代碼

python實現圖像高斯金字塔的示例代碼

以上就是python實現圖像高斯金字塔的示例代碼的詳細內容,更多關于python 圖像高斯金字塔的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 国产一级特黄a大片99 | 国产精品自拍在线观看 | 另类专区另类专区亚洲 | 久久超级碰 | 国产亚洲精品午夜高清影院 | 欧美精品专区免费观看 | 成人国产精品一级毛片天堂 | 日韩欧美在线一级一中文字暮 | 日本黄网站高清色大全 | 色吊丝avav色吊丝 | 中文字幕亚洲日本岛国片 | 永久在线| 久久精品国产亚洲欧美 | chinese情侣真实自拍 | 国产免费人成在线看视频 | 国内自拍在线视频高清 | 成人看免费一级毛片 | 精品国产97在线观看 | 亚洲高清中文字幕一区二区三区 | 亚洲日本中文字幕在线 | 亚洲欧美日韩综合一区久久 | 久久爽久久爽久久免费观看 | 欧美成人午夜毛片免费影院 | 偷拍小视频99在线 | 手机看片国产在线 | 一区二区三区免费看 | 久久精选视频 | 分享一个无毒不卡免费国产 | 99亚洲精品视频 | 中文在线亚洲 | 欧美在线一区二区三区不卡 | 欧美在线视频免费观看 | 香蕉依依精品视频在线播放 | 全黄a一级毛片 | 成年人免费观看的视频 | 欧美极品video粗暴 | 欧美怡红院免费的视频 | 模特三级在线观看 | 一区二区三区在线视频观看 | 手机看黄av免费网址 | 特级aaaaaaaaa毛片免费视频 |