You are on page 1of 1

APPENDIX Procedure II: Spectrogram

Fusion
(Y,R,w) = SFA(S (1) , S (2) , ..., S (N ) )

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:

19:

20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:

procedure ((Y, R, w) = SF A(S))


n=0
pcurrent = 0
while (pcurrent < pthreshold )&&(n <
N ) do
nn+1
initialization
Y = S (n)
R = (Y )
wi = maxk (Y [k, i])
. finds
maximum amplitude for each frame
if N > 1 then
for q = 1 to number of iteration
do
for m = 1 to N do
(p(m) , S(m) , c(m) )
=
(m)
RDT W (Y, R, w, S )
S(m)
=
f rameN ormalize(S(m) )
(m) = (S(m) )
R
end for
Updating model
Y[k,i]
=
median(S(1) [k, i], S(2) [k, i], ...., S(N ) [k, i])
for each (i,k)
R[k,i]
=
(1) [k, i], R
(2) [k, i], ...., R
(N ) [k, i])
median(R
for each (i,k)
P
(m) [i]
wi = N1 N
m=1 c
P
(m) [i]
pave = N1 N
m=1 p
end for
end if
if pcurrent < pave then
Ycurrent = Y
Rcurrent = R
wcurrent = w
pcurrent = pave
end if
end while
return (Ycurrent , Rcurrent , wcurrent ) .
comment
end procedure

You might also like