
完整代码:
clc;
clear;
close all;
warning off;
addpath(genpath(pwd));
I=imread('1.png');%%此处导入自己需要检测的图片
[x,y,z]=size(I);
figure('Name','Processing Steps'),subplot(3,2,1), imshow(I),title('Image 1: Original Image');
I=uint8(I);
temp1=I;
half_intensity=I/2;
subplot(3,2,2), imshow(half_intensity),title('Image 2: Half Intensity Image');
Double_intensity=I*2;
subplot(3,2,3), imshow(Double_intensity),title('Image 3: Double Intensity Image');
temp2=













![[架构之路-215]- 架构 - 概念架构 - 模块(Module)、组件(Component)、包(Package)、对象、函数的区别](https://img-blog.csdnimg.cn/img_convert/3345e7c174187e09b1bec471db9c7726.png)

