Sir, am having the four mat files, which of two contains features from minutie and other two contains feature from invarient moment, can i make fusion of those features by combining it then how?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Sir, am having the four mat files, which of two contains features from minutiae and other two contains feature from invariant moment, can i make fusion of those features by combining it then how?
Antworten (1)
Andrei Bobrov
am 19 Jun. 2018
Bearbeitet: Andrei Bobrov
am 22 Jun. 2018
V = {load('db1.mat'),load('db2.mat'),load('db3.mat'),load('db4.mat')};
n = cellfun(@fieldnames,V,'un',0);
V1 = cellfun(@(x,y)[x.(y)],V,[n{:}],'un',0);
V2 = cell2mat(reshape(cat(1,V1{:}]),1200,[]));
V3 = mat2cell(V2,4*ones(size(V2,1)/4,1),7);
out = mat2cell(V3,[400,800],1);
3 Kommentare
Andrei Bobrov
am 22 Jun. 2018
Bearbeitet: Andrei Bobrov
am 22 Jun. 2018
I don't understand your question:
"..can i make fusion of those features..?"
Siehe auch
Kategorien
Mehr zu Tracking and Sensor Fusion finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!