- /
-
Golden MATLAB
on 20 Oct 2021
- 9
- 25
- 0
- 0
- 190
% Get current logo stored as grayscale image
logo;
m=@()frame2im(getframe(gcf));
L=rgb2gray(m());
close;
hold;
for n=1:2000
p=rand(2,1);
l=plot([0 1],p);
l.Color=[.6 .5 .1,.15];
end
axis off equal
Y=m();
% Show pencil sketch
h=imshow(Y);
% Set alpha mask to be the logo
set(h,'AlphaData',L);
view(20,75)
camva(3.6)