优化图像展示
This commit is contained in:
parent
07ede89d54
commit
42f659c3c9
15
EXP_one.m
15
EXP_one.m
@ -25,13 +25,22 @@ image_reversal = imadjust(image , [0 0 0; 1 1 1], [1 1 1; 0 0 0]);
|
||||
|
||||
% 展示照片
|
||||
figure;
|
||||
subplot(1,3,1);
|
||||
imshow(image);
|
||||
title('Original Image'); % 原图
|
||||
subplot(1,3,2);
|
||||
|
||||
figure;
|
||||
subplot(1,2,1);
|
||||
imshow(image);
|
||||
title('Original Image'); % 原图
|
||||
subplot(1,2,2);
|
||||
imshow(image_gray);
|
||||
title('Grayed Image'); % 灰度化图像
|
||||
subplot(1,3,3);
|
||||
|
||||
figure;
|
||||
subplot(1,2,1);
|
||||
imshow(image_gray);
|
||||
title('Grayed Image'); % 灰度化图像
|
||||
subplot(1,2,2);
|
||||
imshow(image_imbinarize);
|
||||
title('Binary Image'); % 二值化图像
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user