该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
img_src=rgb2gray(img_src);
img_src=double(img_src);
[M,N]=size(img_src);
L=256;
for i=1:M
for j=1;N
if img_src(i,j)
R(i,j)=0;
G(i,j)=4*img_src(i,j);
B(i,j)=L;
else
if img_src(i,j)<=L/2
R(i,j)=0;
G(i,j)=L;
B(i,j)=4*img_src(i,j)+2*L;
else
if img_src(i.j)<=3*L/4
R(i,j)=4*img_src(i,j)-2*L;
G(i,j)=L;
B(i,j)=0;
else
R(i,j)=L;
G(i,j)=-4*img_src(i,j)+4*L;
B(i,j)=0;
end
end
end
end
end
for i=1:M
for j=1:N
ans(i,j,1)=R(i,j);
ans(i,j,2)=G(i,j);
ans(i,j,3)=B(i,j);
end
end
ans=ans/256;
imshow(ans);
提示 :尝试引用非结构体数组的字段。
出错 Untitled2 (line 21)
if img_src(i.j)<=3*L/4
我换了 小的图片进去试了试 也是不行 错在rgb数组过界。。求帮忙,,