Opencv基础自学十五(图像对比)

#巴氏距离 相关性
#直方图,颜色有255,然后分别统计有多少个
import cv2 as cv
import  numpy as np
from matplotlib import pyplot as plt


def create_rgb_hist(image):
	h, w, c = image.shape
	rgbHist = np.zeros([16*16*16, 1], np.float32)#16*16*16为bsize的取值范围  # 初始一个4096*1的矩阵;数据类型必须是np.float32
	bsize = 256 / 16 # 降维,由bgr均是 256 的范围降到 16 的范围
	for row in range(h):
		for col in range(w):
			b = image[row, col, 0]
			g = image[row, col, 1]
			r = image[row, col, 2]
			index = np.int(b/bsize)*16*16 + np.int(g/bsize)*16 + np.int(r/bsize) #下降成16个bin,由256*256*256降维4096
			rgbHist[np.int(index), 0] = rgbHist[np.int(index), 0] + 1  # 由于python没有自增自减操作
	return rgbHist

def hist_compare(image1, image2):#图像对比函数
	hist1 = create_rgb_hist(image1)
	hist2 = create_rgb_hist(image2)
	match1 = cv.compareHist(hist1, hist2, cv.HISTCMP_BHATTACHARYYA) #9+60qwertyuiop[]asdfghjkl;'
	# 巴氏距离比较,距离越小越相似(取值范围0-1)
	match2 = cv.compareHist(hist1, hist2, cv.HISTCMP_CORREL)    #相关性比较,相关性越大越相似(取值范围0-1)
	match3 = cv.compareHist(hist1, hist2, cv.HISTCMP_CHISQR)    # 卡方比较,越大越不相似,这个少用
	print("巴氏距离: %s, 相关性: %s, 卡方: %s" % (match1, match2, match3))

if __name__ == '__main__':
	src = cv.imread("D:/example/1.png ")
	src2=cv.imread('Y:/1.png')
	# cv.namedWindow("input image",cv.WINDOW_AUTOSIZE)
	cv.imshow("source image", src)
	hist_compare(src,src2)
	cv.waitKey(0)
	cv.destroyAllWindows()

 

结果如下

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值