This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/DIPCV/lab2/lab2_9.m

10 lines
236 B
Mathematica
Raw Normal View History

2023-03-30 07:18:49 +00:00
close all
clear
clc
disp('====E4_5_2.m====');
I=imread('tire.tif');
J=histeq(I);
subplot(2,2,1),imshow(I),ylabel('');
subplot(2,2,2),imhist(I);
subplot(2,2,3),imshow(J),ylabel('');
subplot(2,2,4),imhist(J);