首页 > 解决方案 > 直方图匹配结果与输入不相似

问题描述

我正在尝试对两个矩阵进行直方图匹配。但结果与输入矩阵不相似。我认为它必须与“log_ort_esitlenmis”的直方图相似。

%Image enhancement'ta butun imge icin sag sutun
esitlenmis=histeq(a);
ort_esitlenmis=fft2(esitlenmis);
log_ort_esitlenmis=log(1+abs(ort_esitlenmis));

%Image enhancement'ta butun imge icin sol sutun 
ort=fft2(a);
angle_ort_1=angle(ort);% 1.ortogonal(fft) icin faz bilgisi tutma.
log_ort=log(1+abs(ort));

matched=imhistmatch(uint8(log_ort),uint8(log_ort_esitlenmis));

这是我正在尝试做的算法

log_ort、log_ort_esitlenmis 和 mathced 的直方图

标签: matlabimage-processingcomputer-visionimage-enhancement

解决方案


推荐阅读