필터 지우기
필터 지우기

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?

조회 수: 3 (최근 30일)
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?

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2018년 6월 19일
편집: Andrei Bobrov 2018년 6월 22일
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
Andrei Bobrov
Andrei Bobrov 2018년 6월 22일
편집: Andrei Bobrov 2018년 6월 22일
I don't understand your question:
"..can i make fusion of those features..?"

댓글을 달려면 로그인하십시오.

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by