直方图匹配from skimage.exposure import match_histograms

2024-05-11 11:28

本文主要是介绍直方图匹配from skimage.exposure import match_histograms,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

from skimage.exposure import match_histograms

match_histograms 的实现非常简洁有效。直方图匹配或者直方图规定化

import cv2
import numpy as np
from matplotlib import pyplot as pltdef match_histograms(image, reference, *, channel_axis=None):"""Adjust an image so that its cumulative histogram matches that of another.The adjustment is applied separately for each channel.Parameters----------image : ndarrayInput image. Can be gray-scale or in color.reference : ndarrayImage to match histogram of. Must have the same number of channels asimage.channel_axis : int or None, optionalIf None, the image is assumed to be a grayscale (single channel) image.Otherwise, this parameter indicates which axis of the array correspondsto channels.Returns-------matched : ndarrayTransformed input image.Raises------ValueErrorThrown when the number of channels in the input image and the referencediffer.References----------.. [1] http://paulbourke.net/miscellaneous/equalisation/"""print(image.ndim, reference.ndim)if image.ndim != reference.ndim:raise ValueError('Image and reference must have the same number ''of channels.')if channel_axis is not None:if image.shape[-1] != reference.shape[-1]:raise ValueError('Number of channels in the input image and ''reference image must match!')matched = np.empty(image.shape, dtype=image.dtype)for channel in range(image.shape[-1]):matched_channel = _match_cumulative_cdf(image[..., channel],reference[..., channel])matched[..., channel] = matched_channelelse:# _match_cumulative_cdf will always return float64 due to np.interpmatched = _match_cumulative_cdf(image, reference)# if matched.dtype.kind == 'f':#     # output a float32 result when the input is float16 or float32#     out_dtype = utils._supported_float_type(image.dtype)#     matched = matched.astype(out_dtype, copy=False)return matched
def _match_cumulative_cdf(source, template):"""Return modified source array so that the cumulative density function ofits values matches the cumulative density function of the template."""print(source.dtype.kind)if source.dtype.kind == 'u':src_lookup = source.reshape(-1)src_counts = np.bincount(src_lookup)tmpl_counts = np.bincount(template.reshape(-1))print(src_lookup.shape, src_lookup.dtype, src_counts.shape, src_counts.dtype, tmpl_counts.shape, tmpl_counts.dtype)print(tmpl_counts.shape)# omit values where the count was 0tmpl_values = np.nonzero(tmpl_counts)[0]tmpl_counts = tmpl_counts[tmpl_values]print(tmpl_values.shape, tmpl_counts.shape)else:src_values, src_lookup, src_counts = np.unique(source.reshape(-1),return_inverse=True,return_counts=True)tmpl_values, tmpl_counts = np.unique(template.reshape(-1),return_counts=True)# calculate normalized quantiles for each arraysrc_quantiles = np.cumsum(src_counts) / source.sizetmpl_quantiles = np.cumsum(tmpl_counts) / template.size# 0-255的像素值应该变为多少interp_a_values = np.interp(src_quantiles, tmpl_quantiles, tmpl_values)return interp_a_values[src_lookup].reshape(source.shape)if __name__ == "__main__":file1 = r'D:\code\3.jpg'file2 = r'D:\code\1.jpg'img1 = cv2.imread(file1, 0)img2 = cv2.imread(file2, 0)out = match_histograms(img1, img2)plt.figure()#plt.imshow(np.hstack((img1, img2, out))[...,::-1]/255)plt.imshow(np.hstack((img1, img2, out)), 'gray')plt.show()

这篇关于直方图匹配from skimage.exposure import match_histograms的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/979400

相关文章

python之流程控制语句match-case详解

《python之流程控制语句match-case详解》:本文主要介绍python之流程控制语句match-case使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录match-case 语法详解与实战一、基础值匹配(类似 switch-case)二、数据结构解构匹

Nginx中location实现多条件匹配的方法详解

《Nginx中location实现多条件匹配的方法详解》在Nginx中,location指令用于匹配请求的URI,虽然location本身是基于单一匹配规则的,但可以通过多种方式实现多个条件的匹配逻辑... 目录1. 概述2. 实现多条件匹配的方式2.1 使用多个 location 块2.2 使用正则表达式

golang字符串匹配算法解读

《golang字符串匹配算法解读》文章介绍了字符串匹配算法的原理,特别是Knuth-Morris-Pratt(KMP)算法,该算法通过构建模式串的前缀表来减少匹配时的不必要的字符比较,从而提高效率,在... 目录简介KMP实现代码总结简介字符串匹配算法主要用于在一个较长的文本串中查找一个较短的字符串(称为

C++使用栈实现括号匹配的代码详解

《C++使用栈实现括号匹配的代码详解》在编程中,括号匹配是一个常见问题,尤其是在处理数学表达式、编译器解析等任务时,栈是一种非常适合处理此类问题的数据结构,能够精确地管理括号的匹配问题,本文将通过C+... 目录引言问题描述代码讲解代码解析栈的状态表示测试总结引言在编程中,括号匹配是一个常见问题,尤其是在

关于Gateway路由匹配规则解读

《关于Gateway路由匹配规则解读》本文详细介绍了SpringCloudGateway的路由匹配规则,包括基本概念、常用属性、实际应用以及注意事项,路由匹配规则决定了请求如何被转发到目标服务,是Ga... 目录Gateway路由匹配规则一、基本概念二、常用属性三、实际应用四、注意事项总结Gateway路由

一文带你理解Python中import机制与importlib的妙用

《一文带你理解Python中import机制与importlib的妙用》在Python编程的世界里,import语句是开发者最常用的工具之一,它就像一把钥匙,打开了通往各种功能和库的大门,下面就跟随小... 目录一、python import机制概述1.1 import语句的基本用法1.2 模块缓存机制1.

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

hdu 3065 AC自动机 匹配串编号以及出现次数

题意: 仍旧是天朝语题。 Input 第一行,一个整数N(1<=N<=1000),表示病毒特征码的个数。 接下来N行,每行表示一个病毒特征码,特征码字符串长度在1—50之间,并且只包含“英文大写字符”。任意两个病毒特征码,不会完全相同。 在这之后一行,表示“万恶之源”网站源码,源码字符串长度在2000000之内。字符串中字符都是ASCII码可见字符(不包括回车)。

二分最大匹配总结

HDU 2444  黑白染色 ,二分图判定 const int maxn = 208 ;vector<int> g[maxn] ;int n ;bool vis[maxn] ;int match[maxn] ;;int color[maxn] ;int setcolor(int u , int c){color[u] = c ;for(vector<int>::iter

POJ 3057 最大二分匹配+bfs + 二分

SampleInput35 5XXDXXX...XD...XX...DXXXXX5 12XXXXXXXXXXXXX..........DX.XXXXXXXXXXX..........XXXXXXXXXXXXX5 5XDXXXX.X.DXX.XXD.X.XXXXDXSampleOutput321impossible