当前位置:   article > 正文

利用Open CV计算两张Image的差值并Attention Visualization_opengl 计算图像差距

opengl 计算图像差距

通常,CV中对某一张图片i_in进行处理之后得到i_out。为了得到两者之间的差异,可以利用OpenCV
对它们进行逐像素相减得到可视化结果.
i_vis=i_out-i_in

import random
import math
import os
import os
import cv2
import numpy as np
# import pandas as pd
from os import listdir
from os.path import isfile, join


mypath = 'input.png'
mypath1 = 'output.png'
image = cv2.imread(mypath)
image1 = cv2.imread(mypath1)
scale = 3

res = image.astype('float64') - image1.astype('float64')

def postprocess_activations(activations):

  #using the approach in https://arxiv.org/abs/1612.03928
  output = np.abs(activations)
  output = np.sum(output, axis = -1).squeeze()

  output /= output.max()
  output *= 255

  return 255 - output.astype('uint8')

res = postprocess_activations(res) * scale
im_color = cv2.applyColorMap(res, cv2.COLORMAP_JET)
# im_color = cv2.applyColorMap(res, cv2.COLORMAP_TWILIGHT)

cv2.imwrite('vis_result.jpg', im_color[:, :, ::-1])

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36

i_int:
在这里插入图片描述
i_out:
在这里插入图片描述
i_vis:
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/423008
推荐阅读
相关标签
  

闽ICP备14008679号