菜鸟求《基于线性变换的图像增强处理》的matlab程序,我是菜鸟,所以希望高手能给出句子注释,急! 5
2个回答
展开全部
读入图像为A
A = im2double(A);
subplot(2,2,1),imshow(A)
subplot(2,2,2),imhist(A)
[m,n] = size(A);
B=A;
for i=1:m
for j=1:n
if( A(i,j)>130/255 & A(i,j)<=150/255 )
B(i,j)=B(i,j)/3-40/255;
continue;
end
if( A(i,j)>150/255 & A(i,j)<=240/255 )
B(i,j)=8*B(i,j)/3-390/255;
continue;
end
if( A(i,j)>240/255 )
B(i,j)=B(i,j)/3+170/255;
continue;
end
end
end
subplot(2,2,3),imshow(B)
subplot(2,2,4),imhist(B)
A = im2double(A);
subplot(2,2,1),imshow(A)
subplot(2,2,2),imhist(A)
[m,n] = size(A);
B=A;
for i=1:m
for j=1:n
if( A(i,j)>130/255 & A(i,j)<=150/255 )
B(i,j)=B(i,j)/3-40/255;
continue;
end
if( A(i,j)>150/255 & A(i,j)<=240/255 )
B(i,j)=8*B(i,j)/3-390/255;
continue;
end
if( A(i,j)>240/255 )
B(i,j)=B(i,j)/3+170/255;
continue;
end
end
end
subplot(2,2,3),imshow(B)
subplot(2,2,4),imhist(B)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
展开全部
灰度变换增强程序:
% GRAY TRANSFORM
clc;
I=imread('pout.tif');
imshow(I);
J=imadjust(I,[0.3 0.7],[0 1],1); %transforms the walues in the %intensity image I to values in J by linealy mapping values
% between 0.3 and 0.7 to values between 0 and 1.
figure;
imshow(J);
% GRAY TRANSFORM
clc;
I=imread('pout.tif');
imshow(I);
J=imadjust(I,[0.3 0.7],[0 1],1); %transforms the walues in the %intensity image I to values in J by linealy mapping values
% between 0.3 and 0.7 to values between 0 and 1.
figure;
imshow(J);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询