本文实例为大家分享了python实现泊松图像融合的具体代码,供大家参考,具体内容如下

```

from __future__ import division

import numpy as np

import scipy.fftpack

import scipy.ndimage

import cv2

import matplotlib.pyplot as plt

#sns.set(style="darkgrid")

def DST(x):

"""

Converts Scipy's DST output to Matlab's DST (scaling).

"""

X = scipy.fftpack.dst(x,type=1,axis=0)

return X/2.0

def IDST(X):

"""

Inverse DST. Python -> Matlab

"""

n = X.shape[0]

x = np.real(scipy.fftpack.idst(X,type=1,axis=0))

return x/(n+1.0)

def get_grads(im):

"""

return the x and y gradients.

"""

[H,W] = im.shape

Dx,Dy = np.zeros((H,W),'float32'), np.zeros((H,W),'float32')

j,k = np.atleast_2d(np.arange(0,H-1)).T, np.arange(0,W-1)

Dx[j,k] = im[j,k+1] - im[j,k]

Dy[j,k] = im[j+1,k] - im[j,k]

return Dx,Dy

def get_laplacian(Dx,Dy):

"""

return the laplacian

"""

[H,W] = Dx.shape

Dxx, Dyy = np.zeros((H,W)), np.zeros((H,W))

j,k = np.atleast_2d(np.arange(0,H-1)).T, np.arange(0,W-1)

Dxx[j,k+1] = Dx[j,k+1] - Dx[j,k]

Dyy[j+1,k] = Dy[j+1,k] - Dy[j,k]

return Dxx+Dyy

def poisson_solve(gx,gy,bnd):

# convert to double:

gx = gx.astype('float32')

gy = gy.astype('float32')

bnd = bnd.astype('float32')

H,W = bnd.shape

L = get_laplacian(gx,gy)

# set the interior of the boundary-image to 0:

bnd[1:-1,1:-1] = 0

# get the boundary laplacian:

L_bp = np.zeros_like(L)

L_bp[1:-1,1:-1] = -4*bnd[1:-1,1:-1] \

+ bnd[1:-1,2:] + bnd[1:-1,0:-2] \

+ bnd[2:,1:-1] + bnd[0:-2,1:-1] # delta-x

L = L - L_bp

L = L[1:-1,1:-1]

# compute the 2D DST:

L_dst = DST(DST(L).T).T #first along columns, then along rows

# normalize:

[xx,yy] = np.meshgrid(np.arange(1,W-1),np.arange(1,H-1))

D = (2*np.cos(np.pi*xx/(W-1))-2) + (2*np.cos(np.pi*yy/(H-1))-2)

L_dst = L_dst/D

img_interior = IDST(IDST(L_dst).T).T # inverse DST for rows and columns

img = bnd.copy()

img[1:-1,1:-1] = img_interior

return img

def blit_images(im_top,im_back,scale_grad=1.0,mode='max'):

"""

combine images using poission editing.

IM_TOP and IM_BACK should be of the same size.

"""

assert np.all(im_top.shape==im_back.shape)

im_top = im_top.copy().astype('float32')

im_back = im_back.copy().astype('float32')

im_res = np.zeros_like(im_top)

# frac of gradients which come from source:

for ch in xrange(im_top.shape[2]):

ims = im_top[:,:,ch]

imd = im_back[:,:,ch]

[gxs,gys] = get_grads(ims)

[gxd,gyd] = get_grads(imd)

gxs *= scale_grad

gys *= scale_grad

gxs_idx = gxs!=0

gys_idx = gys!=0

# mix the source and target gradients:

if mode=='max':

gx = gxs.copy()

gxm = (np.abs(gxd))>np.abs(gxs)

gx[gxm] = gxd[gxm]

gy = gys.copy()

gym = np.abs(gyd)>np.abs(gys)

gy[gym] = gyd[gym]

# get gradient mixture statistics:

f_gx = np.sum((gx[gxs_idx]==gxs[gxs_idx]).flat) / (np.sum(gxs_idx.flat)+1e-6)

f_gy = np.sum((gy[gys_idx]==gys[gys_idx]).flat) / (np.sum(gys_idx.flat)+1e-6)

if min(f_gx, f_gy) <= 0.35:

m = 'max'

if scale_grad > 1:

m = 'blend'

return blit_images(im_top, im_back, scale_grad=1.5, mode=m)

elif mode=='src':

gx,gy = gxd.copy(), gyd.copy()

gx[gxs_idx] = gxs[gxs_idx]

gy[gys_idx] = gys[gys_idx]

elif mode=='blend': # from recursive call:

# just do an alpha blend

gx = gxs+gxd

gy = gys+gyd

im_res[:,:,ch] = np.clip(poisson_solve(gx,gy,imd),0,255)

return im_res.astype('uint8')

def contiguous_regions(mask):

"""

return a list of (ind0, ind1) such that mask[ind0:ind1].all() is

True and we cover all such regions

"""

in_region = None

boundaries = []

for i, val in enumerate(mask):

if in_region is None and val:

in_region = i

elif in_region is not None and not val:

boundaries.append((in_region, i))

in_region = None

if in_region is not None:

boundaries.append((in_region, i+1))

return boundaries

if __name__=='__main__':

"""

example usage:

"""

import seaborn as sns

im_src = cv2.imread('../f01006.jpg').astype('float32')

im_dst = cv2.imread('../f01006-5.jpg').astype('float32')

mu = np.mean(np.reshape(im_src,[im_src.shape[0]*im_src.shape[1],3]),axis=0)

# print mu

sz = (1920,1080)

im_src = cv2.resize(im_src,sz)

im_dst = cv2.resize(im_dst,sz)

im0 = im_dst[:,:,0] > 100

im_dst[im0,:] = im_src[im0,:]

im_dst[~im0,:] = 50

im_dst = cv2.GaussianBlur(im_dst,(5,5),5)

im_alpha = 0.8*im_dst + 0.2*im_src

# plt.imshow(im_dst)

# plt.show()

im_res = blit_images(im_src,im_dst)

import scipy

scipy.misc.imsave('orig.png',im_src[:,:,::-1].astype('uint8'))

scipy.misc.imsave('alpha.png',im_alpha[:,:,::-1].astype('uint8'))

scipy.misc.imsave('poisson.png',im_res[:,:,::-1].astype('uint8'))

im_actual_L = cv2.cvtColor(im_src.astype('uint8'),cv2.cv.CV_BGR2Lab)[:,:,0]

im_alpha_L = cv2.cvtColor(im_alpha.astype('uint8'),cv2.cv.CV_BGR2Lab)[:,:,0]

im_poisson_L = cv2.cvtColor(im_res.astype('uint8'),cv2.cv.CV_BGR2Lab)[:,:,0]

# plt.imshow(im_alpha_L)

# plt.show()

for i in xrange(500,im_alpha_L.shape[1],5):

l_actual = im_actual_L[i,:]#-im_actual_L[i,:-1]

l_alpha = im_alpha_L[i,:]#-im_alpha_L[i,:-1]

l_poisson = im_poisson_L[i,:]#-im_poisson_L[i,:-1]

with sns.axes_style("darkgrid"):

plt.subplot(2,1,2)

#plt.plot(l_alpha,label='alpha')

plt.plot(l_poisson,label='poisson')

plt.hold(True)

plt.plot(l_actual,label='actual')

plt.legend()

# find "text regions":

is_txt = ~im0[i,:]

t_loc = contiguous_regions(is_txt)

ax = plt.gca()

for b0,b1 in t_loc:

ax.axvspan(b0, b1, facecolor='red', alpha=0.1)

with sns.axes_style("white"):

plt.subplot(2,1,1)

plt.imshow(im_alpha[:,:,::-1].astype('uint8'))

plt.hold(True)

plt.plot([0,im_alpha_L.shape[0]-1],[i,i],'r')

plt.axis('image')

plt.show()

plt.subplot(1,3,1)

plt.imshow(im_src[:,:,::-1].astype('uint8'))

plt.subplot(1,3,2)

plt.imshow(im_alpha[:,:,::-1].astype('uint8'))

plt.subplot(1,3,3)

plt.imshow(im_res[:,:,::-1]) #cv2 reads in BGR

plt.show()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持聚米学院。

python泊松_python实现泊松图像融合相关推荐

  1. python图像融合算法_Python OpenCV 实现图像融合

    原标题:Python OpenCV 实现图像融合 来自:https://www.linuxmi.com/python-opencv-image-blending.html 在本文中,我们将讨论Pyth ...

  2. python超声成像_Python与医疗图像4

    1. 脑磁图(MEG) 解析:脑磁图(MEG)是集低温超导.生物工程.电子工程.医学工程等二十一世纪尖端科学技术于一体,是无创伤性地探测大脑电磁生理信号的一种脑功能检测技术. 2. FA值 解析:各向 ...

  3. python修片_python – Matplotlib savefig图像修剪

    我不断惊讶于在matplotlib中做同样的事情有多少种方式. 因此,我相信有人可以使这个代码更加简洁. 无论如何,这应该清楚地表明如何解决你的问题. >>> import pyla ...

  4. 量子计算机解泊松方程,学界 | 从泊松方程的解法,聊到泊松图像融合

    原标题:学界 | 从泊松方程的解法,聊到泊松图像融合 " 经典图像融合算法解读. " AI 科技评论按,本文作者成指导,字节跳动算法工程师,本文首发于知乎(https://zhua ...

  5. 泊松图像融合(泊松融合)

    泊松图像融合(泊松融合) from: http://blog.csdn.net/baimafujinji/article/details/46787837 在之前的文章中,我们详细介绍了基于泊松方程的 ...

  6. 图像处理(十二)图像融合(1)Seamless cloning泊松克隆-Siggraph 2004

    本篇博文主要讲解2004年Siggraph的经典paper:<Poisson Image Editing>,在图像融合领域,融合效果最牛逼的paper.讲这个算法,我没打算讲太多理论的公式 ...

  7. 图像融合之泊松融合,原理讲解及C++代码实现(特别适合新手)

    本篇文章主要为讲解图像处理的泊松融合的原理及实现. 泊松融合原理来源于这篇文章:<Poisson Image Editing> 本人为图像处理的小白,在机缘巧合下,看到了泊松融合的图像处理 ...

  8. 图像融合之泊松编辑(Poisson Editing)(1):简略语言概述算法

    http://blog.csdn.net/u011534057/article/details/68922197 原作者:Chris Tralie 简介 泊松图像编辑是一种全自动的"无缝融合 ...

  9. 【计算机图形学】poisson Image Editing泊松图像融合算法

    poissonImageEditing 1. 概述 为了解决将源图像的一部分区域ROI(Region of Interest)直接复制到目标图像时,边界过渡不自然的问题,如下图中间所示.本论文提出se ...

  10. 泊松图像融合算法代码实现_部分多曝光图像融合算法(含少数通用图像融合算法)代码下载链接...

    最近弄了一篇多曝光图像融合的论文,顺便搜集了一些多曝光图像融合算法.为了方便大家,特将链接放在本文里.另外我制作和收集了100对多曝光图像,并用下述方法生成了2100张融合图像,后续将放出. 一.传统 ...

最新文章

  1. 独家 | 教你用Pytorch建立你的第一个文本分类模型!
  2. [Java] super关键字:引用父类成员
  3. C++const修饰成员函数
  4. Web 开发人员和设计师必读文章推荐【系列三十】
  5. oracle-手动锁表
  6. C/C++[入门最后两题]
  7. 计算机桌面文件自动备份取消,设置电脑收银系统自动备份及备份清除功能
  8. [Excel函数] 逻辑判断函数
  9. 美团点评Java一二面过,三面“凉凉”~复习备战“金三春招季
  10. 此生未完成 --- 于娟
  11. 历届全国大学生GIS应用技能大赛试题及数据
  12. Matting之Towards Enhancing Fine-grained Details for Image Matting
  13. 【麒麟操作系统软件商店老是闪退?--麒麟系统软件商店卸载与重装(小白教程)】
  14. pdf文件怎么转化为word,pdf转换成word的方法
  15. 音频信号的数字化及压缩编码
  16. 神仙程序媛小姐姐的一些列Java教程,从小白到进阶,春招和秋招必备的面试题,全站式保姆的Java教程导航帖(未完结)
  17. 计算机原理学习(序)
  18. 线性表查找之二分查找(折半、对分查找)
  19. bzoj 5248: [2018多省省队联测]一双木棋 博弈论+状压dp
  20. Win32汇编(SMU—子程序)

热门文章

  1. Python 读取文件夹中指定后缀的文件
  2. Monkey简单介绍
  3. 此生不戒多巴胺—冲刺总结
  4. Java学习 --- HTML
  5. python constants_Python constants包_程序模块 - PyPI - Python中文网
  6. 计算机六级准考证,99宿舍如何查询英语六级准考证号
  7. java-php-python-ssm-民航售票管理系统-计算机毕业设计
  8. mysql数据库技术思考题5_Mysql课后思考题
  9. [网络规划] 拓扑图绘图工具yED Graph Editor使用(持续更新)
  10. 7z linux压缩命令行,压缩解压.7z格式文件示例——Linux命令行方式