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/lab1/lab1_3.m

8 lines
211 B
Matlab

close all
clear
clc
disp('====E1_2_1.m====');
I1=imread('lab1_2.bmp');
subplot(2,2,1),imshow(I1),xlabel('(a)256 色位图'); % 语句1
I2=imread('lab1_0.bmp');
subplot(1,2,2),imshow(I2),xlabel('(b)24位位图');