Hi , I need to understand this code for my project , my project about face recognition and I need to understand this ,, Thx any way ^^
Show older comments
%%store
st.names = {'mic','shelly','linoy','libi','exface1','exface2'};
st.data{1} = mic1;
st.data{2} = shelly1;
st.data{3} = linoy1;
st.data{4} = libi1;
st.data{5} = extraface1;
st.data{6} = extraface2;
z = [mic1 shelly1 linoy1 ; libi1 extraface1 extraface2];
figure(6),imshow(z,'Initialmagnification','fit');;title('z')
save classFile st;
clear all, close all;
load classFile;
M=6;N=50;
avImg=zeros(N);
z = [ st.data{1} st.data{2} st.data{3}; st.data{4} st.data{5} st.data{6}];
figure(1),imshow(z,'Initialmagnification','fit');;title('z org')
Accepted Answer
More Answers (0)
Categories
Find more on Semantic Segmentation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!