• Remix
  • Share
  • New Entry

on 20 Oct 2021
  • 3
  • 40
  • 1
  • 0
  • 165
% Get current logo stored as grayscale image
logo;
m=@()frame2im(getframe(gcf));
L=rgb2gray(m());
close;
hold;
Current plot held
for n=1:1200
p=rand(2,1);
l=plot([0 1],p);
l.Color=[0,0,0,.1];
end
axis off equal
Y=m();
% Show pencil sketch
h=imshow(Y);
% Set alpha mask to be the logo
set(h,'AlphaData',L);
Remix Tree