matlab中使用imhist函数查看直方图有问题两幅对比度不同的灰度图,为什么直方图一样?附上Matlab程序:clc;clear all;close all; [f1,map] = imread('D:\Matlab\ceshi.bmp');figure(1);subplot(2,1,1);imshow(f1,map);title
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/19 20:34:51
matlab中使用imhist函数查看直方图有问题两幅对比度不同的灰度图,为什么直方图一样?附上Matlab程序:clc;clear all;close all; [f1,map] = imread('D:\Matlab\ceshi.bmp');figure(1);subplot(2,1,1);imshow(f1,map);title
matlab中使用imhist函数查看直方图有问题
两幅对比度不同的灰度图,为什么直方图一样?
附上Matlab程序:
clc;
clear all;
close all;
[f1,map] = imread('D:\Matlab\ceshi.bmp');
figure(1);
subplot(2,1,1);
imshow(f1,map);
title('原图像');
subplot(2,1,2);
imhist(f1,map);
axis on;
title('直方图');
[f2,map1] = imread('D:\Matlab\ceshi100.bmp');
figure(2);
subplot(2,1,1);
imshow(f2,map1);
title('修改图像');
subplot(2,1,2);
imhist(f2,map1);
axis on;
title('直方图');
matlab中使用imhist函数查看直方图有问题两幅对比度不同的灰度图,为什么直方图一样?附上Matlab程序:clc;clear all;close all; [f1,map] = imread('D:\Matlab\ceshi.bmp');figure(1);subplot(2,1,1);imshow(f1,map);title
从你的两张图上真看不出太大的差别来,视觉有时会欺骗人的.
另外,你看到直方图挺像,其实也未必一样.