马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
- a=imread('in.gif');
- b=imread('yuan.bmp');
- c=imresize(a,[150,150]);
- d=imresize(b,[150,150]);
- f=magic(150);
- subplot(2,3,1); imshow(d);
- n=1;
- for i=1:150;
- for j=1:150;
- [x,y]=find(f==n);
- e(x,y)=d(i,j);
- n=n+1;
- end;
- end;
- subplot(2,3,2);
- imshow(e);
-
- for i=1:150
- for j=1:150
- g(i,j)=bitset(c(i,j),2,e(i,j));
- end
- end
- subplot(2,3,3); imshow(g);
- for i=1:150
- for j=1:150
- s1(i,j)=bitget(g(i,j),2);
- end
- end
- subplot(2,3,4);imshow(double(s1));
- m=1;
- for p=1:150;
- for q=1:150;
- [u,v]=find(f==m);
- s2(p,q)=s1(u,v);
- m=m+1;
- end
- end
- subplot(2,3,5);imshow(double(s2));
复制代码 |